Skip to content
This repository has been archived by the owner on Sep 16, 2022. It is now read-only.

Commit

Permalink
Updated requirements:
Browse files Browse the repository at this point in the history
Django to 1.5.4
Django Fiber to 0.11.0
  • Loading branch information
Niels van Dijk committed Oct 9, 2013
1 parent ea63350 commit 6aa14ce
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -4,10 +4,10 @@ Startproject is a starting point for creating websites with Django Fiber.

## Using:

* Django (1.5.1)
* Django Fiber (0.10.4)
* Django (1.5.4)
* Django Fiber (0.11.0)
* MySQL python (1.2.4)
* South (0.8.1)
* South (0.8.2)
* Normalize (2.1.2)
* jQuery (1.10.1)
* Modernizr (2.6.2)
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
@@ -1,4 +1,4 @@
Django==1.5.2
Django==1.5.4
MySQL-python==1.2.4
South==0.8.2
django-fiber==0.10.5
django-fiber==0.11.0
5 changes: 3 additions & 2 deletions startproject/settings_default.py
Expand Up @@ -54,7 +54,7 @@

# Absolute filesystem path to the directory that will hold user-uploaded files.
# Example: "/home/media/media.lawrence.com/media/"
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MEDIA_ROOT = os.path.join(BASE_DIR, 'media', '')

# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash.
Expand All @@ -65,7 +65,7 @@
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/home/media/media.lawrence.com/static/"
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
STATIC_ROOT = os.path.join(BASE_DIR, 'static', '')

# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
Expand Down Expand Up @@ -121,6 +121,7 @@
'mptt',
'compressor',
'south',
'easy_thumbnails',
'fiber',

# Django
Expand Down

0 comments on commit 6aa14ce

Please sign in to comment.