bang/backend
dependabot[bot] 245ffa2191
Bump certifi from 2020.11.8 to 2021.5.30
Bumps [certifi](https://github.com/certifi/python-certifi) from 2020.11.8 to 2021.5.30.
- [Release notes](https://github.com/certifi/python-certifi/releases)
- [Commits](https://github.com/certifi/python-certifi/compare/2020.11.08...2021.05.30)

---
updated-dependencies:
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-06-17 17:29:26 +00:00
..
.idea started working on frontend 2020-11-19 21:34:25 +01:00
bang fix password bug 2021-06-17 18:32:55 +02:00
__init__.py add event on Help 2021-06-12 16:31:01 +02:00
Dockerfile add docker 2020-11-21 17:37:42 +01:00
Readme.md fix game not ending on sheriff death 2021-03-01 17:10:54 +01:00
requirements.txt Bump certifi from 2020.11.8 to 2021.5.30 2021-06-17 17:29:26 +00:00

Bang Backend

How to get started

Development

Create a virtual env

python3 -m venv PATHTOENV

activate the new environment

souce PATHTOENV/bin/activate

now with the current directory in the backend folder install the dependencies

pip install -r requirements.txt

then you can start the python file __init__.py, I recommend you use nodemon for that, as it will automatically reload the server on new changes. If you don't already have it, you can install nodemon with

npm i -g nodemon

then you will be able to start the server with

nodemon __init__.py