Our CS4All Hackathon submission
- Run
npm installin the client folder to install all client dependencies - Run
npm run buildto create a production build - Run
cd ../serverto go into the server folder - Run
pip install -r requirements.txtto install all server dependencies - Run
python ./manage.py createsuperuser - Run
python ./manage.py seedto add OpenData stories to your DB - Run
python ./manage.py runserverto start the django server - Go your django server's url
Instead of running npm run build, you can run npm start to start a React development server. The remaining steps should be done in a separate terminal window.
In the end, you should have both the development server and django server running. To test the app, go to your development server's url.
