diff options
author | Pavlos Ratis <dastergon@gentoo.org> | 2013-06-25 14:23:22 +0300 |
---|---|---|
committer | Pavlos Ratis <dastergon@gentoo.org> | 2013-06-25 14:23:22 +0300 |
commit | b5e20aa8a50a0b74d2f1892840fbc5f68c00a793 (patch) | |
tree | 3d0edd0a624ad6ec70b09463e247e157d32fb1e8 /okupy/settings | |
parent | Merge pull request #1 from mgorny/code-cleanup (diff) | |
download | identity.gentoo.org-b5e20aa8a50a0b74d2f1892840fbc5f68c00a793.tar.gz identity.gentoo.org-b5e20aa8a50a0b74d2f1892840fbc5f68c00a793.tar.bz2 identity.gentoo.org-b5e20aa8a50a0b74d2f1892840fbc5f68c00a793.zip |
add path to static files
In development.py users need to get the static files from this link
https://github.com/dastergon/gentoo-identity-bootstrap
and adjust the path accordingly in STATICFILES_DIRS.
Diffstat (limited to 'okupy/settings')
-rw-r--r-- | okupy/settings/development.py.sample | 1 | ||||
-rw-r--r-- | okupy/settings/production.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/okupy/settings/development.py.sample b/okupy/settings/development.py.sample index 1d5c626..ed7030d 100644 --- a/okupy/settings/development.py.sample +++ b/okupy/settings/development.py.sample @@ -66,6 +66,7 @@ STATICFILES_DIRS = ( # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. settings.PROJECT_ROOT + '/okupy/static', + '/path/to/gentoo-identity-bootstrap', ) # List of finder classes that know how to find static files in diff --git a/okupy/settings/production.py b/okupy/settings/production.py index 1ef7742..0145f1b 100644 --- a/okupy/settings/production.py +++ b/okupy/settings/production.py @@ -65,6 +65,7 @@ STATICFILES_DIRS = ( # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. settings.PROJECT_ROOT + '/okupy/static', + '/var/www/gentoo-identity-bootstrap', ) # List of finder classes that know how to find static files in |