Adventure aus DB
This commit is contained in:
parent
2ae436cfd8
commit
b0d12f7978
1 changed files with 2 additions and 15 deletions
17
app/app.py
17
app/app.py
|
|
@ -1,18 +1,5 @@
|
|||
from flask import Flask
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route("/")
|
||||
def hello():
|
||||
return "Willkommen in unserem Escape Room!"
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(host="0.0.0.0", port=9011) # 90 + Raumnummer
|
||||
|
||||
|
||||
from flask import Flask, request
|
||||
|
||||
|
||||
import sqlite3
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
|
|
@ -42,4 +29,4 @@ def raum(id):
|
|||
return html
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(host="0.0.0.0", port=9011)
|
||||
app.run(host="0.0.0.0", port=9011)
|
||||
Loading…
Reference in a new issue