Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 736 Bytes

README.md

File metadata and controls

51 lines (38 loc) · 736 Bytes

Class-Activities System

How to run

Install requirements

pip install -r requirements.txt

Step 1: Install npm and node

  • npm version 8.3.0
  • node version 17.3.0
  • to in stall node and npm following these steps:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
source ~/.bashrc
nvm install v17.3.0
  • Recheck versions:
npm -v
node -v

Step 2: Install dependencies:

cd frontend
npm i --force

Step 3: Run

npm start

References

DigitalOcean