diff --git a/README.md b/README.md new file mode 100644 index 0000000..64baf02 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# thedrank.com + +Welcome to the repository managing the dumbest website in the world. + +Made with Python & Flask. + +Current plans: What am I doing with my life. \ No newline at end of file diff --git a/app/__init__.py b/app/__init__.py new file mode 100644 index 0000000..82b47ea --- /dev/null +++ b/app/__init__.py @@ -0,0 +1,5 @@ +from flask import Flask + +app = Flask(__name__) + +from app import routes \ No newline at end of file diff --git a/app/routes.py b/app/routes.py new file mode 100644 index 0000000..43401f9 --- /dev/null +++ b/app/routes.py @@ -0,0 +1,6 @@ +from app import app +from flask import render_template + +@app.route('/') +def index(): + return 'who the hell knows' \ No newline at end of file diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000..c0f531a --- /dev/null +++ b/wsgi.py @@ -0,0 +1,4 @@ +from app import app + +if __name__ == "__main__": + app.run(host="0.0.0.0") \ No newline at end of file