clarify activate command

This commit is contained in:
Neil Parikh 2021-03-04 11:19:00 -05:00
parent 98cff39fdf
commit b757137872
1 changed files with 4 additions and 2 deletions

View File

@ -7,14 +7,16 @@
2. Run the following commands inside the backend folder: 2. Run the following commands inside the backend folder:
``` ```
python3 -m venv venv python3 -m venv venv
venv\Scripts\activate venv/Scripts/activate
pip install -r requirements.txt pip install -r requirements.txt
python main.py python main.py
``` ```
If you are on Windows, run `venv\Scripts\activate` instead, for the second command.
3. Go to `localhost:5000` in your web browser and you should see "Hello, World!". 3. Go to `localhost:5000` in your web browser and you should see "Hello, World!".
## (Optional) Exercises ## (Optional) Exercises
- Install Postman (https://www.postman.com/downloads/) and use it make a request to this web server. - Install Postman (https://www.postman.com/downloads/) and use it make a request to this web server.
- Add a new GET route at `/test` that shows "A new route". - Add a new GET route at `/test` that shows "A new route".
- Add a new POST route at `/post` that accepts a JSON body, and shows the `foo` key of the JSON. - Add a new POST route at `/post` that accepts a JSON body, and shows the `foo` key of the JSON.