mirror of
https://github.com/Xevion/thedrank.com.git
synced 2025-12-05 23:16:35 -06:00
intial Flask setup, README
This commit is contained in:
7
README.md
Normal file
7
README.md
Normal 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
5
app/__init__.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from flask import Flask
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
from app import routes
|
||||
6
app/routes.py
Normal file
6
app/routes.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from app import app
|
||||
from flask import render_template
|
||||
|
||||
@app.route('/')
|
||||
def index():
|
||||
return 'who the hell knows'
|
||||
Reference in New Issue
Block a user