This is the instruction to run Flight Studio
Before you get started, you should do all the set up first
- Source into the
frontend
folder, then yarn add all the packages in package.json
cd frontend
yarn
- Run your website
yarn run dev
- Before you jump into backend, remember to have virtualenv installed
- Source into the
backend
folder, then initialize the python environment
cd ../backend
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt