-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
mahathu
committed
Feb 25, 2022
1 parent
4265a82
commit f3b6f59
Showing
17 changed files
with
2,158 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# python virtual environment | ||
env/ | ||
/env/ | ||
/client/node_modules/ | ||
/client/public/build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
### setup | ||
|
||
1) Create a new `python3` environment: `python3 -m venv env` | ||
2) Activate the environment and install necessary packages: | ||
``` | ||
source env/bin/activate | ||
python3 -m pip install -r requirements.txt | ||
``` | ||
3) Install node packages within the `client` directory: `cd client && npm install` | ||
4) Run server (from the root directory of the repo): `python server.py` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/node_modules/ | ||
/public/build/ | ||
|
||
.DS_Store |
Oops, something went wrong.