Fix typo
This commit is contained in:
@ -4,11 +4,11 @@ from .core import app
|
|||||||
# Start the flask server if run from terminal
|
# Start the flask server if run from terminal
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
||||||
@app.route('/')
|
@app.route('/game')
|
||||||
def get_root():
|
def get_root():
|
||||||
return app.send_static_file('index.html')
|
return app.send_static_file('index.html')
|
||||||
|
|
||||||
@app.route('/<path:path>')
|
@app.route('/game/<path:path>')
|
||||||
def get_path(path):
|
def get_path(path):
|
||||||
fpath = f"{app.static_folder}/{path}"
|
fpath = f"{app.static_folder}/{path}"
|
||||||
|
|
||||||
@ -4,8 +4,8 @@
|
|||||||
# _/ __/ / /_/ /___/ /_/ / _/ /__/ /_/ // /_/ // __/
|
# _/ __/ / /_/ /___/ /_/ / _/ /__/ /_/ // /_/ // __/
|
||||||
# /_/ ___\__,_//____/ /_/ __/_/ \____//_____/_\___/
|
# /_/ ___\__,_//____/ /_/ __/_/ \____//_____/_\___/
|
||||||
|
|
||||||
# Corona time tracker
|
# Schnitzeljagd time tracker
|
||||||
|
|
||||||
VERSION = (1, 1, 0)
|
VERSION = (0, 1, 0)
|
||||||
|
|
||||||
__version__ = '.'.join(map(str, VERSION))
|
__version__ = '.'.join(map(str, VERSION))
|
||||||
2
setup.py
2
setup.py
@ -7,7 +7,7 @@ with open("LICENSE.md", "r") as f:
|
|||||||
license_text = f.read()
|
license_text = f.read()
|
||||||
|
|
||||||
st.setup(
|
st.setup(
|
||||||
name="schnitzeljagt",
|
name="schnitzeljagd",
|
||||||
version="0.1.0",
|
version="0.1.0",
|
||||||
author="Oskar @ FaSTTUBe",
|
author="Oskar @ FaSTTUBe",
|
||||||
author_email="o.winkels@fasttube.de",
|
author_email="o.winkels@fasttube.de",
|
||||||
|
|||||||
Reference in New Issue
Block a user