-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
57 lines (45 loc) · 1.42 KB
/
app.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
import os
from flask import Flask
from flask_restful import Api
from flask_jwt import JWT
from flask_cors import CORS
from dotenv import load_dotenv
# from db import db
from security import authenticate, identity
from resources.exam import Exam, ExamList
from resources.question import Question
from resources.answer import Answer
from resources.user import UserRegister
app = Flask(__name__)
CORS(app)
load_dotenv(".env")
app.config["DEBUG"] = True
app.config['SQLALCHEMY_DATABASE_URI'] = os.environ.get(
'DATABASE_URL', 'sqlite:///data.db')
# app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///data.db'
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
api = Api(app)
app.secret_key = os.environ.get(
"JWT_SECRET_KEY", "")
jwt = JWT(app, authenticate, identity)
api.add_resource(Exam, '/exam/<string:gid>')
api.add_resource(ExamList, '/exams')
api.add_resource(UserRegister, '/register')
# Disabled endpoints
# api.add_resource(Question, '/question/<string:gid>')
# api.add_resource(Answer, '/answer/<string:gid>')
if __name__ == '__main__':
from db import db
db.init_app(app)
if app.config['DEBUG']:
@app.before_first_request
def create_tables():
db.create_all()
app.run(port=5000)
# Development Env
# @app.before_first_request
# def create_tables():
# db.init_app(app)
# db.create_all()
# if __name__ == '__main__':
# app.run(debug=True) # important to mention debug=True