Commits an initial django app.

This commit is contained in:
Christopher Neugebauer 2016-09-21 10:24:26 +10:00
parent 21613a357d
commit f932841cda
8 changed files with 24 additions and 0 deletions

0
registripe/__init__.py Normal file
View file

3
registripe/admin.py Normal file
View file

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

7
registripe/apps.py Normal file
View file

@ -0,0 +1,7 @@
from __future__ import unicode_literals
from django.apps import AppConfig
class RegistripeConfig(AppConfig):
name = 'registripe'

View file

5
registripe/models.py Normal file
View file

@ -0,0 +1,5 @@
from __future__ import unicode_literals
from django.db import models
# Create your models here.

3
registripe/tests.py Normal file
View file

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
registripe/views.py Normal file
View file

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.

3
requirements.txt Normal file
View file

@ -0,0 +1,3 @@
pinax-stripe==3.2.1
requests>=2.11.1
stripe==1.38.0