Skip to content

Very simple sample Integration of checkout one time payments using stripe. Integrated in March 2020.

Notifications You must be signed in to change notification settings

k-ken-t4g/django_stripe_one-time-checkout

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django_stripe_one-time-checkout

Very simple sample Integration of checkout one time payments using stripe. Integrated in March 2020.

This Integration is based on stripe sample github

It requires pipenv to run the server.

Steps to run the sample code server

$ pipenv shell
$ (dev) python manage.py runserver

Directory tree

.
├── Pipfile
├── Pipfile.lock
├── README.md
├── checkout              # Integrated stripe sample django app
│   ├── __init__.py
│   ├── admin.py
│   ├── apps.py
│   ├── migrations
│   │   └── __init__.py
│   ├── models.py
│   ├── serializers.py
│   ├── tests.py
│   ├── urls.py
│   └── views.py
├── db.sqlite3
├── manage.py
├── static
│   ├── checkout
│   │   └── js
│   │       └── script.js # Client side javascript
│   ├── css
│   │   ├── bootstrap.min.css
│   │   └── bootstrap.min.css.map
│   └── js
│       ├── bootstrap.bundle.min.js
│       ├── bootstrap.bundle.min.js.map
│       ├── jquery-3.4.1.min.js
│       └── jquery-3.4.1.min.map
├── stripe_test
│   ├── __init__.py
│   ├── asgi.py
│   ├── settings.py
│   ├── urls.py
│   └── wsgi.py
└── templates
    ├── base.html
    └── checkout
        ├── canceled.html
        ├── checkout_test.html # Stripe checkout page
        └── success.html

About

Very simple sample Integration of checkout one time payments using stripe. Integrated in March 2020.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published