Authors: Xin Wang Michelle Chu Yuteng Wu Jeng-Rung Tu
- Clone this repo
git clone https://github.com/meshellchoo/HACKBU2022.git
- cd into the project directory
cd HACKBU2022/
- create a virtual environment
python -m venv env
3a. For Linux, activate the virtual environment
source env/bin/activate
3b. For Linux, activate the virtual environment
env\Scripts\activate.bat
- install all the dependencies
pip3 install -r requirements.txt
- cd into the admin folder
cd admin/
- run the server
python manage.py runserver
- cd into the React folder on a separate terminal
cd react-app/
- install required dependencies. Your terminal should tell you which dependencies you're missing. Simply install the missing ones.
npm install
- activate the react server
npm start