Fausto Busuito
commited on
Commit
β’
3ef6d35
1
Parent(s):
50d52f0
Application changes
Browse files- .gitignore +1 -1
- app/__init__.py +5 -0
- routes.py β app/routes.py +0 -0
- {static β app/static/css}/style.css +0 -0
- {static β app/static/js}/script.js +0 -0
- {templates β app/templates}/index.html +0 -0
- {templates β app/templates}/quiz.html +0 -0
- {templates β app/templates}/results.html +0 -0
.gitignore
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
|
2 |
/.venv
|
3 |
-
|
|
|
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
|