Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 830 Bytes

readme.md

File metadata and controls

26 lines (15 loc) · 830 Bytes

CSSA WEBSITE SAMPLE

This repository holds LSU CSSA Sample Website project based on django, react and mysql.

Test

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

Deployment

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