├── .gitignore ├── LICENSE ├── README.md ├── djangostripe ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── payments ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── requirements.txt ├── static └── main.js └── templates ├── cancelled.html ├── home.html └── success.html /.gitignore: -------------------------------------------------------------------------------- 1 | env 2 | venv/ 3 | .env 4 | .idea/ 5 | __pycache__ 6 | *.sqlite3 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/README.md -------------------------------------------------------------------------------- /djangostripe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangostripe/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/djangostripe/asgi.py -------------------------------------------------------------------------------- /djangostripe/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/djangostripe/settings.py -------------------------------------------------------------------------------- /djangostripe/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/djangostripe/urls.py -------------------------------------------------------------------------------- /djangostripe/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/djangostripe/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/manage.py -------------------------------------------------------------------------------- /payments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /payments/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/payments/admin.py -------------------------------------------------------------------------------- /payments/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/payments/apps.py -------------------------------------------------------------------------------- /payments/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /payments/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/payments/models.py -------------------------------------------------------------------------------- /payments/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/payments/tests.py -------------------------------------------------------------------------------- /payments/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/payments/urls.py -------------------------------------------------------------------------------- /payments/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/payments/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django==4.2.3 2 | stripe==5.5.0 3 | -------------------------------------------------------------------------------- /static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/static/main.js -------------------------------------------------------------------------------- /templates/cancelled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/templates/cancelled.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-checkout/HEAD/templates/success.html --------------------------------------------------------------------------------