basic structure

This commit is contained in:
Felix Pankratz 2020-02-29 15:38:23 +01:00
parent 131f93dcec
commit 75318b5b35
2 changed files with 25 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
venv/
__pycache__/

23
homepage.py Normal file
View File

@ -0,0 +1,23 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return 'Index Page'
@app.route('/projects')
def projects():
return 'My Projects'
@app.route('/monitoring')
def monitoring():
return 'link to monitoring'
@app.route('/disclaimer')
def disclaimer():
return 'disclaimer'