Skip to content

Commit

Permalink
modified production MEDIA_ROOT and STATIC_ROOT
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddharta Govindaraj committed Jul 31, 2011
1 parent 2a74bcc commit 7273110
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions make_my_badge/production_settings.py
Expand Up @@ -6,5 +6,7 @@
DEBUG = False
TEMPLATE_DEBUG = DEBUG

MEDIA_ROOT = config["core"]["data_directory"]
STATIC_ROOT = "../static"
import os

MEDIA_ROOT = os.path.join(config["core"]["data_directory"], "media")
STATIC_ROOT = os.path.join(config["core"]["data_directory"], "static")

0 comments on commit 7273110

Please sign in to comment.