Skip to content
Snippets Groups Projects
Commit 1b8dc99b authored by Matt Grau's avatar Matt Grau
Browse files

add requirements.txt file and steps to README.md to run the repo from scratch

parent b05e184c
No related branches found
No related tags found
No related merge requests found
......@@ -57,3 +57,17 @@ npm run-script build
```bash
pip install waitress
```
## Running the final repo
To run the final version of the code, clone the repo, and run the following commands from inside the repo folder.
```bash
python3 -m venv demo_venv
source demo_venv/bin/activate
pip install -r requirements.txt
cd frontend
npm install
npm run-script build
cd ..
python3 server.py
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment