obs-portal/api/obs/bin/openbikesensor_api.py

24 lines
380 B
Python
Raw Normal View History

2021-11-04 17:13:24 +00:00
#!/usr/bin/env python3
import sys
import os
import argparse
import asyncio
from obs.api.app import app
from obs.api.db import connect_db
def main():
2021-11-16 20:59:37 +00:00
debug = app.config.DEBUG
app.run(
host=app.config.HOST,
port=app.config.PORT,
debug=debug,
auto_reload=app.config.get("AUTO_RELOAD", debug),
)
2021-11-04 17:13:24 +00:00
if __name__ == "__main__":
main()