forked from tnc-ca-geo/tnc-edge-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
edge_http.py
76 lines (54 loc) · 2.63 KB
/
edge_http.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import click
from flask import Flask, g
from flask_admin import Admin
from flask_admin.contrib.sqla import ModelView
from sqlalchemy import text
from sqlalchemy.orm import scoped_session, sessionmaker
import os
from db import db
app = Flask(__name__)
app.config.from_object('config.defaults')
if 'ENVIRONMENT' in os.environ:
app.config.from_envvar('ENVIRONMENT')
# set optional bootswatch theme
app.config['FLASK_ADMIN_SWATCH'] = 'cerulean'
app.config["SQLALCHEMY_DATABASE_URI"] = "postgresql+psycopg2://%s@/%s"%(app.config['DBUSER'], app.config['DBNAME'])
# engine = create_engine("postgresql+psycopg2://%s@/%s"%(app.config['DBUSER'], app.config['DBNAME']), echo=True)
# SessionMaker = scoped_session(sessionmaker(bind=engine))
db.init_app(app)
from model import *
from vector import GpsVector
with app.app_context():
# Base.metadata.create_all(engine)
db.metadata.create_all(db.engine)
from alembic import command, config
cfg = config.Config("alembic.ini")
command.upgrade(cfg, "head")
with db.engine.begin() as connection:
connection.execute(text("SELECT setval('aifishdata_id_seq', (SELECT MAX(id) FROM aifishdata));"))
connection.execute(text("SELECT setval('boatschedules_id_seq', (SELECT MAX(id) FROM boatschedules));"))
connection.execute(text("SELECT setval('deckhandevents_id_seq', (SELECT MAX(id) FROM deckhandevents));"))
connection.execute(text("SELECT setval('internetdata_id_seq', (SELECT MAX(id) FROM internetdata));"))
connection.execute(text("SELECT setval('ondeckdata_id_seq', (SELECT MAX(id) FROM ondeckdata));"))
connection.execute(text("SELECT setval('tests_id_seq', (SELECT MAX(id) FROM tests));"))
connection.execute(text("SELECT setval('tracks_id_seq', (SELECT MAX(id) FROM tracks));"))
connection.execute(text("SELECT setval('vectors_id_seq', (SELECT MAX(id) FROM vectors));"))
from api import deckhand
app.register_blueprint(deckhand, url_prefix='/deckhand')
admin = Admin(app, name='Risk Assesment', template_mode='bootstrap3')
# work with session
admin.add_view(RiskVectorModelView(db.session))
admin.add_view(TestModelView(db.session))
admin.add_view(ModelView(GpsData, db.session))
admin.add_view(ModelView(AifishData, db.session))
admin.add_view(ModelView(OndeckData, db.session))
admin.add_view(InternetDataView(db.session))
admin.add_view(ModelView(DeckhandEventRaw, db.session))
admin.add_view(ModelView(DeckhandEventView, db.session))
admin.add_view(ModelView(BoatSchedule, db.session))
@click.command()
@click.option('--port', default=50000)
def serve(port):
app.run(host="0.0.0.0", port=port)
if __name__ == '__main__':
serve()