Update with run instructions

This commit is contained in:
Joey 2022-09-18 16:31:30 -06:00 committed by GitHub
commit c233dfb9d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,15 @@
# Rock Paper Scissors Game
## Instructions
```bash
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
uvicorn app.main:app --host 0.0.0.0 --port 8080
```
## Stack
I used uvicorn + FastAPI for the backend, and simple JS + HTML + Bulma