Skip to content

Files

Latest commit

 

History

History

class_calendar

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

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