diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | backend/__init__.py | 7 | ||||
-rwxr-xr-x | manage.py | 17 | ||||
-rw-r--r-- | requirements.txt | 2 |
4 files changed, 28 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d27464 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +__pycache__ +venv/ diff --git a/backend/__init__.py b/backend/__init__.py new file mode 100644 index 0000000..81ca7eb --- /dev/null +++ b/backend/__init__.py @@ -0,0 +1,7 @@ +from flask import Flask + +app = Flask(__name__) + +@app.route("/") +def hello_world(): + return "Hello World!" diff --git a/manage.py b/manage.py new file mode 100755 index 0000000..b28d93a --- /dev/null +++ b/manage.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from flask_script import Manager, Shell + +from backend import app + + +manager = Manager(app) + +def shell_context(): + return dict(app=manager.app) + +manager.add_command('shell', Shell(make_context=shell_context)) + +if __name__ == '__main__': + manager.run() diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..eaf59ef --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +Flask +Flask-Script #manage.py |