Skip to content

Commit

Permalink
Update install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
MinhPhan8803 authored Dec 8, 2022
1 parent 187eb73 commit 2de1c86
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,17 @@ If you would like to access the project code or the development website, follow

2. In the `src/frontend` directory, install npm packages:
```sh
npm install
npm install -force
```
3. In the same directory start the React app:
```sh
npm start
```
4. Open another terminal and move to the `src/backend` directory. Start the Flask app:
4. Open another terminal and move to the `src/backend` directory, install pip packages:
```sh
pip install -r requirements.txt
```
5. Start the Flask app:
```sh
flask run
```
Expand Down

3 comments on commit 2de1c86

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
app.py1731094%47–58
auth.py90100% 
config.py10100% 
decorators.py270100% 
dataholders
   apt.py90100% 
   mainpage_get.py160100% 
   review.py70100% 
   user.py80100% 
pages
   login.py290100% 
   mainpage.py1180100% 
   userpage.py530100% 
TOTAL4501098% 

Tests Skipped Failures Errors Time
54 0 💤 0 ❌ 0 🔥 1.395s ⏱️

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
app.py1731094%47–58
auth.py90100% 
config.py10100% 
decorators.py270100% 
dataholders
   apt.py90100% 
   mainpage_get.py160100% 
   review.py70100% 
   user.py80100% 
pages
   login.py290100% 
   mainpage.py1180100% 
   userpage.py530100% 
TOTAL4501098% 

Tests Skipped Failures Errors Time
54 0 💤 0 ❌ 0 🔥 1.496s ⏱️

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
app.py1731094%47–58
auth.py90100% 
config.py10100% 
decorators.py270100% 
dataholders
   apt.py90100% 
   mainpage_get.py160100% 
   review.py70100% 
   user.py80100% 
pages
   login.py290100% 
   mainpage.py1180100% 
   userpage.py530100% 
TOTAL4501098% 

Tests Skipped Failures Errors Time
54 0 💤 0 ❌ 0 🔥 1.811s ⏱️

Please sign in to comment.