This repository holds LSU CSSA Sample Website project based on django, react and mysql.
To debug the website, python and nodejs are required, and yarn is optional. Install dependencies by following commands
sudo pip install -r requirements.txt
cd js
yarn install
To debug, build javascript bundle by
yarn build:dev
Then, run django
cd ..
python manage.py runserver
To deploy the website, nginx or apache is required and set django into production mode, build javascript bundle by production mode in js folder
yarn build