diff --git a/hunt/.README.md.un~ b/hunt/.README.md.un~ new file mode 100644 index 0000000..62a467f Binary files /dev/null and b/hunt/.README.md.un~ differ diff --git a/Pipfile b/hunt/Pipfile similarity index 100% rename from Pipfile rename to hunt/Pipfile diff --git a/Pipfile.lock b/hunt/Pipfile.lock similarity index 100% rename from Pipfile.lock rename to hunt/Pipfile.lock diff --git a/hunt/README.md b/hunt/README.md new file mode 100644 index 0000000..6dd502a --- /dev/null +++ b/hunt/README.md @@ -0,0 +1,2 @@ +# scavenger-hunt-2022 +"now in color!" diff --git a/README.md b/hunt/README.md~ similarity index 100% rename from README.md rename to hunt/README.md~ diff --git a/manage.py b/hunt/manage.py old mode 100755 new mode 100644 similarity index 100% rename from manage.py rename to hunt/manage.py diff --git a/run.sh b/run.sh new file mode 100644 index 0000000..db53f0e --- /dev/null +++ b/run.sh @@ -0,0 +1,7 @@ +source /root/.local/share/virtualenvs/public-RqHYzL15/bin/activate + +gunicorn hunt.wsgi -b $HOST:$PORT -w 1 + +# source /site/public/venv/bin/activate + +# gunicorn app:app -b $HOST:$PORT -w 1 \ No newline at end of file diff --git a/waiting/app.py b/waiting/app.py new file mode 100644 index 0000000..4de47b0 --- /dev/null +++ b/waiting/app.py @@ -0,0 +1,9 @@ +from flask import Flask, render_template +app = Flask(__name__) + +@app.route('/') +def home(): + return render_template('index.html') + +if __name__ == '__main__': + app.run() \ No newline at end of file diff --git a/waiting/templates/index.html b/waiting/templates/index.html new file mode 100644 index 0000000..afd253c --- /dev/null +++ b/waiting/templates/index.html @@ -0,0 +1,158 @@ + + Scavenger Hunt + + +
+
+ +
+
+ 🥳 + 🎉 + 🎂 +
+
+ + + \ No newline at end of file