deployment problems ;(
This commit is contained in:
parent
76e01fce2e
commit
0a10b2a076
|
@ -2,8 +2,9 @@ FROM python:3.8
|
||||||
|
|
||||||
ADD . /root/
|
ADD . /root/
|
||||||
|
|
||||||
WORKDIR /root
|
WORKDIR /root/
|
||||||
|
|
||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
|
|
||||||
CMD [ "gunicorn", "--chdir", "src", "app:app"]
|
|
||||||
|
CMD [ "gunicorn", "-b", "0.0.0.0:25565", "src.app:app" ]
|
|
@ -10,7 +10,7 @@ import json
|
||||||
|
|
||||||
|
|
||||||
# Loading logging preferences
|
# Loading logging preferences
|
||||||
with open("logger.json", "r") as f:
|
with open("src/logger.json", "r") as f:
|
||||||
dconf = json.load(f)
|
dconf = json.load(f)
|
||||||
|
|
||||||
# Establishing logger
|
# Establishing logger
|
||||||
|
@ -44,7 +44,7 @@ def host():
|
||||||
hash = dohash(hostcode)
|
hash = dohash(hostcode)
|
||||||
resp = redirect(url_for("play", hash=hash))
|
resp = redirect(url_for("play", hash=hash))
|
||||||
resp.set_cookie("_gid", str(hostcode))
|
resp.set_cookie("_gid", str(hostcode))
|
||||||
with open("templates/games.json", "r") as f:
|
with open("src/templates/games.json", "r") as f:
|
||||||
tmp = json.load(f)
|
tmp = json.load(f)
|
||||||
games[hash] = tmp
|
games[hash] = tmp
|
||||||
games[hash]["hostcode"] = hostcode
|
games[hash]["hostcode"] = hostcode
|
||||||
|
@ -57,7 +57,7 @@ def host():
|
||||||
session.permanent = True
|
session.permanent = True
|
||||||
return resp
|
return resp
|
||||||
|
|
||||||
with open("templates/games.json", "r") as f:
|
with open("src/templates/games.json", "r") as f:
|
||||||
tmp = json.load(f)
|
tmp = json.load(f)
|
||||||
default = [tmp["tossup"], tmp["bonus"], tmp["power"], tmp["negs"]]
|
default = [tmp["tossup"], tmp["bonus"], tmp["power"], tmp["negs"]]
|
||||||
return render_template('host.html', title="Host Game", version=str(version), form=form, default=default)
|
return render_template('host.html', title="Host Game", version=str(version), form=form, default=default)
|
||||||
|
|
Reference in New Issue
Block a user