Use this project/app to integrate Django and Stripe with a simple user registration.
- Django==1.5.1
- South==0.8.1
- py-bcrypt==0.3
- requests==1.2.3
- stripe==1.9.2
- wsgiref==0.1.2
- clone the repo
- setup/activate a virtualenv
- install the requirements
- update the rdms (sqlite, mysql, postgres)
- sync the db / setup a superuser
- update your stripe api keys
- update stripe subscription plan in payments/views.py
- setup support for one time payments (based on recurring model right now)
- create better documentation
- add unit tests
├── manage.py
├── payments
│ ├── __init__.py
│ ├── admin.py
│ ├── forms.py
│ ├── models.py
│ ├── tests.py
│ └── views.py
├── project_name
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── static
│ ├── application.js
│ ├── jquery.js
│ ├── jquery.min.js
│ └── jquery_ujs.js
├── templates
│ ├── base.html
│ ├── cardform.html
│ ├── edit.html
│ ├── errors.html
│ ├── field.html
│ ├── home.html
│ ├── register.html
│ ├── sign_in.html
│ └── user.html
└── test.sqlite