Commits an initial django app.
This commit is contained in:
parent
21613a357d
commit
f932841cda
8 changed files with 24 additions and 0 deletions
0
registripe/__init__.py
Normal file
0
registripe/__init__.py
Normal file
3
registripe/admin.py
Normal file
3
registripe/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
7
registripe/apps.py
Normal file
7
registripe/apps.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class RegistripeConfig(AppConfig):
|
||||
name = 'registripe'
|
0
registripe/migrations/__init__.py
Normal file
0
registripe/migrations/__init__.py
Normal file
5
registripe/models.py
Normal file
5
registripe/models.py
Normal 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
3
registripe/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
registripe/views.py
Normal file
3
registripe/views.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
3
requirements.txt
Normal file
3
requirements.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
pinax-stripe==3.2.1
|
||||
requests>=2.11.1
|
||||
stripe==1.38.0
|
Loading…
Reference in a new issue