initial project based on twoscoops template

- used https://github.com/twoscoops/django-twoscoops-project
- removed templates and static files
- changed requirements, settings and docs
This commit is contained in:
Jan Dittberner 2014-05-29 23:57:19 +02:00
commit ccb7fc7b6b
25 changed files with 1210 additions and 0 deletions

7
requirements/base.txt Normal file
View file

@ -0,0 +1,7 @@
Django==1.6.5
django-ldapdb==0.3.2
bpython==0.13
django-braces==1.4.0
django-model-utils==2.0.3
logutils==0.3.3
South==0.8.4

5
requirements/local.txt Normal file
View file

@ -0,0 +1,5 @@
# Local development dependencies go here
-r base.txt
coverage==3.7.1
django-debug-toolbar==1.2.1
Sphinx==1.2.2

View file

@ -0,0 +1,3 @@
# Pro-tip: Try not to put anything here. There should be no dependency in
# production that isn't in development.
-r base.txt

3
requirements/test.txt Normal file
View file

@ -0,0 +1,3 @@
# Test dependencies go here.
-r base.txt
coverage==3.7.1