Fausto Busuito commited on
Commit
3ef6d35
β€’
1 Parent(s): 50d52f0

Application changes

Browse files
.gitignore CHANGED
@@ -1,3 +1,3 @@
1
 
2
  /.venv
3
- /.DS_Store
 
1
 
2
  /.venv
3
+ *.DS_Store
app/__init__.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ from flask import Flask
2
+
3
+ def create_app():
4
+ app = Flask(__name__)
5
+ return app
routes.py β†’ app/routes.py RENAMED
File without changes
{static β†’ app/static/css}/style.css RENAMED
File without changes
{static β†’ app/static/js}/script.js RENAMED
File without changes
{templates β†’ app/templates}/index.html RENAMED
File without changes
{templates β†’ app/templates}/quiz.html RENAMED
File without changes
{templates β†’ app/templates}/results.html RENAMED
File without changes