An opportunity to learn React and make a useful exercise journal
Note: Ensure you're using Python 3.6.2 in your virtual environment
- Clone the repository
cd
into the cloned folder- Create a new virtual environment with
virtualenv venv
(if you need help with this step: refer to: https://virtualenv.pypa.io/en/latest/) - Activate your virtual environment
cp env.example .env
and change the SECRET_KEY- Source the
.env
file pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
and follow promptspython manage.py runserver
- Develop the frontend inside of
frontend/src/
- In
frontend/src
runnpm run start:dev
(both servers must be running for hot reloading to work)