mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-03 23:11:00 +02:00
Squashed 'ai-context/trustgraph-templates/' content from commit 42a5fd1b
git-subtree-dir: ai-context/trustgraph-templates git-subtree-split: 42a5fd1b678f32be378062e30451e2052ccb95dd
This commit is contained in:
commit
74cc8a4685
1216 changed files with 116347 additions and 0 deletions
18
trustgraph_configurator/service.py
Normal file
18
trustgraph_configurator/service.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
|
||||
import logging
|
||||
|
||||
from . api import Api
|
||||
|
||||
def run_service():
|
||||
|
||||
logging.basicConfig(
|
||||
level=logging.DEBUG,
|
||||
format="%(asctime)s %(levelname)s %(message)s"
|
||||
)
|
||||
|
||||
logging.info("Starting...")
|
||||
|
||||
a = Api(port=8080)
|
||||
|
||||
a.run()
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue