# Create a virtual environment
python3 -m venv env
# Activate the virtual environment
source env/bin/activate
# Install the requirements
pip3 install -r requirements.txt
# Apply the migrations
python3 manage.py migrate
# Run the application
python3 manage.py runserver
Don't forget to Stripe Secret Key in the django_stripe/settings.py
file.
STRIPE_SECRET_KEY = 'YOUR_STRIPE_SECRET_KEY'
These are the repositories that use this Django project as a backend and Stripe Frontend Library to make payments.