The Definitive Django Learning Platform.
This is a tutorial for integrating PayPal with Django and React.
This project was bootstrapped with Cookiecutter Django.
Make sure you add your environment variables
You can run the project with Docker:
docker-compose -f local.yml build
docker-compose -f local.yml up
Install and run everything manually. You will need to create a Postgres database locally as well.
virtualenv venv
source venv/bin/activate
pip install -r requirements/local.txt
python manage.py migrate
python manage.py runserver
npm i
npm run start
npm run build