intial Flask setup, README

This commit is contained in:
Xevion
2019-09-21 23:39:06 -05:00
parent 35c96d5237
commit b7d4c737ca
4 changed files with 22 additions and 0 deletions

7
README.md Normal file
View File

@@ -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.

5
app/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
from flask import Flask
app = Flask(__name__)
from app import routes

6
app/routes.py Normal file
View File

@@ -0,0 +1,6 @@
from app import app
from flask import render_template
@app.route('/')
def index():
return 'who the hell knows'

4
wsgi.py Normal file
View File

@@ -0,0 +1,4 @@
from app import app
if __name__ == "__main__":
app.run(host="0.0.0.0")