Chris Franklin
e0cf4337d2
Fix quote marks in common config to be consistent.
2014-12-03 15:07:22 +00:00
Chris Franklin
9ee47dab78
Fix quote marks
2014-12-03 15:04:52 +00:00
Chris Franklin
7e048c8942
Fix spelling mistakes in production config
2014-12-03 15:02:52 +00:00
Martin Blech
48a1ddd48c
Added default Vagrant gateway to INTERNAL_IPS
...
Makes Django Debug Toolbar show up too when running inside the Vagrant VM.
2014-12-01 20:54:48 -03:00
Matt Warren
e29879d813
addresses issue mentioned here: https://code.djangoproject.com/ticket/19353
...
adding users in admin resulted in reference to auth.User
2014-11-26 00:21:25 +05:30
Felipe Arruda Pontes
811c1a3336
bumping version of Django in setup.py to correspond to requirements/base.txt
2014-11-13 00:31:17 -02:00
Benjamin ABEL
a78ec1d134
Fix pep8 errors in docs/conf.py
2014-10-30 14:06:39 +01:00
Benjamin ABEL
e59cd33ec8
Update django to 1.7.1
2014-10-29 22:11:27 +01:00
Sławek Ehlert
cdac4b6f06
minor pep8 fixes
...
fixes those small linting issues that should not be in this template.
``users/models.py`` F401 warnings are intentionally left for
convenience in future coding.
2014-10-27 23:51:27 +01:00
Daniel Greenfeld
259f0afae6
Added triple quotes to admin name fix #145
...
This fixes the problem with author names with apostrophes breaking the settings files.
2014-10-21 21:33:56 -07:00
Chris Franklin
593ed5a07d
Add sendgrid instructions and note about backup.
2014-10-12 16:13:48 +01:00
Chris Franklin
f4e4dce6f2
Fix RST syntax.
2014-10-12 16:07:02 +01:00
Chris Franklin
e97f91f475
Add dokku deployment instructions
...
Not ready to be merged, WIP.
2014-10-12 15:59:17 +01:00
Saurabh Kumar
e3e3eca2d2
fix(dep): update pillow, collectfast & heroku-memcacheify to latest
2014-10-08 10:34:23 +05:30
Eyad Sibai
ea4e4121b1
typo fix
2014-10-04 13:58:31 +05:30
Saurabh Kumar
3c29f79c4c
fix(docs): remove syncdb command from instructions
...
It is not required in django > 1.7
closes #140
2014-10-04 12:37:22 +05:30
Bernd Meyer
3900088772
Added the latest version of pytz (2014.7) to requirements/base.txt to
...
avoid errors with DateTime fields.
2014-10-03 12:12:59 -07:00
Bernd Meyer
63f64b648b
Fixed missing @ before db name.
2014-10-03 08:08:28 -07:00
Bernd Meyer
07435921a6
Added database credentials and security check for db password.
...
Added database credentials (user name: 'django', password: 'blank') and
security check for db password. The security check will raise an error
if the database password is 'blank' in production.
2014-10-03 08:04:09 -07:00
Bernd Meyer
ce916f12e1
Added pytz to requirements/base.txt
...
Added the latest version of pytz (2014.7) to requirements/base.txt to
avoid errors with DateTime fields.
2014-10-03 07:08:38 -07:00
Fábio C. Barrionuevo da Luz
9eca939861
reverted pylibmc to 1.2.3 version
...
Reverted pylibmc to 1.2.3 version because django-heroku-memcacheify==0.5 require pylibmc==1.2.3
https://github.com/rdegges/django-heroku-memcacheify/blob/master/setup.py#L18
2014-09-18 17:42:42 -03:00
Saurabh Kumar
5d004ba6e4
fix(security/dj-secure): add missing middleware of django-secure
...
- For the working of django-secure the middleware class needs
to be added. (http://django-secure.readthedocs.org/en/latest/index.html#usage )
- add correct values for SECURE_PROXY_SSL_HEADER for heroku
2014-09-13 02:06:34 +05:30
Daniel Greenfeld
e84c9daea4
Merge pull request #128 from talpor/master
...
Yay! Update django to 1.7 👍 👍 👍 👍 👍
2014-09-03 13:55:21 -07:00
Alberto Sanchez
ce85e8b6dc
fix sites migrations
2014-09-03 15:07:36 -04:30
Alberto Sanchez
a5402511b0
change migrations from south to new django format
2014-09-03 12:53:06 -04:30
Alberto Sanchez
6c3828cb4e
update django to 1.7
2014-09-03 12:51:27 -04:30
Alberto Sanchez
eefdf06fb0
remove south
2014-09-03 12:49:34 -04:30
Daniel Greenfeld
c82d020ea1
Update requirements
2014-09-03 10:05:57 -07:00
Saurabh Kumar
8a56273cec
update pillow 2.5.2 => 2.5.3
...
- A security release update for pillow.
2014-08-24 20:47:06 +05:30
Daniel Greenfeld
03c34c547a
Updated Django for 1.6.6 security release
2014-08-21 20:41:48 -03:00
Saurabh Kumar
81576069f8
refractor(settings): break up the settings into one module per configuration
...
- moves urls.py to project_root
- moves wsgi.py to project_root
- 'config.settings' is replaced by 'config', selectively applicable
configs are imported in '__init__.py'
fixes : #47
2014-08-18 22:26:16 +05:30
Daniel Greenfeld
1701aed142
Updated South and added badge
2014-08-17 11:23:19 -03:00
Daniel Greenfeld
5a9ddc586a
Update requirements
2014-08-17 11:22:19 -03:00
Daniel Greenfeld
93fb8f8698
merge
2014-08-17 11:20:05 -03:00
Daniel Greenfeld
d7f16a4d14
Adding now value
2014-08-17 11:18:53 -03:00
Sławek Ehlert
10e3e8f6ab
add flake8 and setup.cfg for linting
...
some changes to pass flake8 linting. added setup.cfg for flake8
configuration. Ignoring E265 can be added to this file because
config/settings.py is flooded with this error. After #105 gets
merged it'll be OK.
2014-08-07 21:10:26 +02:00
Russell Davies
596b2e8df8
Updated wsgi to default to Production configuration
...
Prevents the application server from running in Local configuration if
DJANGO_CONFIGURATION variable is not set. Related to: pydanny#75
2014-07-19 16:03:02 +01:00
Daniel Greenfeld
ae71813dd2
Merge pull request #119 from glarrain/patch-2
...
settings: fix indentation for `CACHES`
2014-07-18 09:45:43 -07:00
Daniel Greenfeld
0fa22a0b2d
Merge pull request #118 from glarrain/patch-1
...
README: remove set config variables for SendGrid
2014-07-18 09:45:22 -07:00
German Larrain
a2116e721e
settings: fix indentation for CACHES
2014-07-17 20:54:49 -04:00
German Larrain
5a78cf98cd
README: remove set config variables for SendGrid
...
Fix https://github.com/pydanny/cookiecutter-django/issues/117
2014-07-17 20:46:42 -04:00
German Larrain
529b85e518
README: remove redundant settings option
...
Of the three `heroku run python ... manage.py ...` commands, two specified `--settings=config.settings`, which is redundant with what is in `manage.py`, and there is no reason for those two to have that option and for the third not to.
2014-07-17 20:41:00 -04:00
Matt Linares
ad5857c955
Expand regex match on users/urls.py UserDetailView
2014-07-13 22:56:38 +02:00
Daniel Greenfeld
1b667ff9e5
Merge pull request #110 from Tavistock/patch-1
...
Changed page_title block to be html in the content block
2014-07-09 22:18:06 -07:00
Daniel Greenfeld
612aa160de
Merge pull request #107 from ikkebr/patch-2
...
Added a default LOGIN_URL
2014-07-09 14:11:07 -07:00
Daniel Greenfeld
38cf9e4514
Merge pull request #106 from ikkebr/patch-1
...
Updated external links
2014-07-09 14:10:44 -07:00
Travis McNeill
6e0f1da0a2
Changed page_title block to be html in the content block
...
base.html has no page_title block
2014-07-09 14:40:56 -04:00
Mozillazg
52a2c555ca
Remove django-discover-runner app.
...
Because it has been added to Django 1.6 as the default test runner.
2014-06-04 11:19:59 +08:00
Henrique Pereira
78894b85cf
Added a default LOGIN_URL
...
Added "account_login" as the default LOGIN_URL in settings.py.
This fixes a problem where the application will throw a 404 on the login page if you changed allauth from "/accounts" to anything else.
2014-05-28 14:36:43 -03:00
Henrique Pereira
52e2261f3f
Updated external links
...
Updated Bootstrap, jQuery and Angular external links
2014-05-28 11:16:08 -03:00