-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
56 lines (40 loc) · 1.27 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
import os
from flask import Flask, render_template, url_for, jsonify
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
from config import Config
app = Flask(__name__)
app.config.from_object(Config)
db = SQLAlchemy(app)
migrate = Migrate(app, db)
from models import *
#контекст оболочки flask shell
@app.shell_context_processor
def make_shell_context():
return {'db': db, 'Users': Users, 'Questions': Questions, 'Answers': Answers}
@app.route('/')
def index():
return render_template('index.html')
@app.route('/get-questions')
def getQuestions():
resp = Questions.query.all()
questions = []
for item in resp:
questions.append(item.question)
return jsonify(questions)
# SNIPPET FOR CAESH #
@app.context_processor
def override_url_for():
return dict(url_for=dated_url_for)
def dated_url_for(endpoint, **values):
if endpoint == 'static':
filename = values.get('filename', None)
if filename:
file_path = os.path.join(app.root_path,
endpoint, filename)
values['q'] = int(os.stat(file_path).st_mtime)
return url_for(endpoint, **values)
# SNIPPET FOR CAESH #
if __name__ == "__main__":
app.run(debug=True)
# app.run()