mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
Getting pieces to work
This commit is contained in:
parent
b24dc7259c
commit
988b4f8a46
|
@ -1,3 +1,4 @@
|
|||
# This file is here because many Platforms as a Service look for
|
||||
# requirements.txt in the root directory of a project.
|
||||
pylibmc==1.2.3 #
|
||||
-r requirements/production.txt
|
||||
|
|
|
@ -2,5 +2,23 @@ Django==1.5.2
|
|||
bpython==0.12
|
||||
django-braces==1.2.2
|
||||
django-model-utils==1.4.0
|
||||
logutils==0.3.3
|
||||
South==0.8.1
|
||||
django-allauth==0.12.0
|
||||
unicode-slugify==0.1.1
|
||||
Pillow==2.1.0
|
||||
django-floppyforms==1.1
|
||||
django-autoslug==1.7.1
|
||||
|
||||
|
||||
|
||||
# There are edge cases for South with Django 1.5+ that haven't been addressed yet.
|
||||
# South==0.8.1
|
||||
https://bitbucket.org/andrewgodwin/south/get/59f6bae8b1a501ca14a5f23f8b11c44c42f33147.zip
|
||||
|
||||
|
||||
# Useful things
|
||||
# django-avatar that work with Django 1.5
|
||||
# git+git://github.com/jezdez/django-avatar@6393d25166a6c2d2df0bd28e19f161fac2bb1166
|
||||
|
||||
|
||||
# django-crispy-forms with support for Django 1.5
|
||||
git+git://github.com/maraujop/django-crispy-forms@42c84a9b02d885de249c1d003c2e7ad031283c26
|
|
@ -2,5 +2,9 @@
|
|||
-r base.txt
|
||||
coverage==3.6
|
||||
django-discover-runner==0.4
|
||||
django-debug-toolbar==0.9.4
|
||||
Sphinx==1.2b1
|
||||
Sphinx
|
||||
|
||||
|
||||
# django-debug-toolbar that works with Django 1.5+
|
||||
git+git://github.com/django-debug-toolbar/django-debug-toolbar@7e4ecfd04cfe61b51e1fd6fdf0ce1c800a3ebb3b
|
||||
|
||||
|
|
|
@ -3,3 +3,8 @@
|
|||
-r base.txt
|
||||
|
||||
gunicorn==0.17.4
|
||||
django-storages==1.1.4
|
||||
gevent==0.13.8
|
||||
gunicorn==0.14.3
|
||||
psycopg2==2.5
|
||||
boto==2.9.5
|
0
{{cookiecutter.repo_name}}/config/__init__.py
Normal file
0
{{cookiecutter.repo_name}}/config/__init__.py
Normal file
|
@ -3,7 +3,7 @@ import os
|
|||
import sys
|
||||
|
||||
if __name__ == "__main__":
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "{{ project_name }}.settings.local")
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "{{ project_name }}.config.local")
|
||||
|
||||
from django.core.management import execute_from_command_line
|
||||
|
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 8.6 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Loading…
Reference in New Issue
Block a user