1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 13:04:19 +00:00
pds-2021-g2-nest/code/backend/nest_backend/__main__.py
Lorenzo Balugani 013ce17aa8 Database implementation
All initial database classes are now properly implemented. Hurray!
2021-04-21 18:47:18 +02:00

26 lines
726 B
Python

"""
This is the runner for the server.
"""
from flask import Flask
import os
import werkzeug.middleware.proxy_fix
from .routes import *
from database import Base, tables
import psycopg2
app = Flask(__name__)
if os.getenv('COOKIE_SECRET'):
app.secret_key = os.getenv('COOKIE_SECRET')
else:
app.secret_key = "testing"
reverse_proxy_app = werkzeug.middleware.proxy_fix.ProxyFix(app=app, x_for=1, x_proto=0, x_host=1, x_port=0, x_prefix=0)
app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql://postgres:password@localhost:5432/PdSDev'
Base.app = app
Base.init_app(app)
# Routes setup
app.add_url_rule("/doa", view_func=page_doa, methods=["GET"])
if __name__ == "__main__":
Base.create_all()
app.run(debug=True)