inital commit

This commit is contained in:
alex danamir
2020-12-13 23:15:46 +03:00
parent 416a1b9b34
commit 0f89efd754
43 changed files with 1540 additions and 0 deletions

11
app_config.py Normal file
View File

@@ -0,0 +1,11 @@
from flask import Flask
app = Flask(__name__)
if __name__ == "__main__":
app.jinja_env.auto_reload = True
app.run(debug=True)