Here is a small Django + react application that will manage your tasks 😋
- Use a python virtual environment such as pipenv or virtualenv
pipenv install
Or if you are using virtualenv
source env/bin/activate && pip install -r requirements.txt
- Move to the frontend folder and install the dependencies
cd frontend/ && npm install
First, start the server(our API)
python manage.py runserver
Second, launch the react application (make sure you are in the frontend folder)
cd frontend/ && npm start
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.