Added support for Docker

- Updated SetUp.md with a "Run locally with Docker" section
- Moved requirements.txt to the root of the repo since some hosting
  services require the file to be there (eg. Heroku https://elements.heroku.com/buildpacks/heroku/heroku-buildpack-python)
This commit is contained in:
AlexandrosAlexiou
2021-11-30 21:31:48 +02:00
committed by Andrew Novac
parent 0bf396a69f
commit 02b606b543
7 changed files with 48 additions and 2 deletions

View File

@@ -153,4 +153,4 @@ def catch_all(path):
if __name__ == "__main__":
app.run(debug=True)
app.run(host="0.0.0.0", debug=True)