On Jun 3, 4:16 am, vishy <vishalsod...@gmail.com> wrote:
> Hi,
>
> I am developing an application on windows. I decided to upload it on
> webfaction n see how deployment goes. The issues I faced was with
> paths given -
> for templates - I had given absolute path of directory on windows,
> for database(using sqlite) - just the name.But, for deployment I had
> to change both the paths. Is there any way which I can avoid this?
>
> thanks
One more way?
# Get any additional settings modules from the
ADDITIONAL_SETTINGS_MODULES
# environment variable, if set. These files should exist in the same
# directory as the main settings module. Use standard module notation
# (eg. 'prod_settings' without adding a .py to the end).
#
# Multiple additional modules can be listed, separated by
# a comma ',' and will be imported in order. Any settings defined
# by these files will clobber existing settings, including those in
the main
# (this) settings file.
settings_modules = os.environ.get('ADDITIONAL_SETTINGS_MODULES', '')
for settings_module in settings_modules.split(','):
settings_module = settings_module.strip()
if settings_module:
exec 'from %s import *' % (settings_module,)
I have the above at the bottom of my settings module.
This allows me to keep all of my settings file in source control, and
to select the appropriate settings by via the environment. I find
this fairly flexible.
Wayne
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to
django-users+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---