Django React Notes
About
A Django project using React on the client side.
Start server
cd server
python -m venv venv
pip install -r requirements.txt
source venv/bin/activate
cd notes
python manage.py runserver
Start client
cd client
npm install
npm start