From c233dfb9d77fdf5004ebc2a6a43d01af52f1b631 Mon Sep 17 00:00:00 2001 From: Joey Date: Sun, 18 Sep 2022 16:31:30 -0600 Subject: [PATCH] Update with run instructions --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 954349a..1e92fa8 100644 --- a/README.md +++ b/README.md @@ -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