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
cdinto 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 .envand change the SECRET_KEY- Source the
.envfile pip install -r requirements.txtpython manage.py migratepython manage.py createsuperuserand follow promptspython manage.py runserver- Develop the frontend inside of
frontend/src/ - In
frontend/srcrunnpm run start:dev(both servers must be running for hot reloading to work)