i have created a simple module to store all my choices and reuse them in my application ( see CharField choices )
Here my project structure
project_name/
-- manage.py
-- settings.py
-- ......
-- apps/
-- __init__.py
-- simple_app/
-- __init__.py
-- models.py
-- ....
-- common/
-- __init__.py
-- choices/
-- __init__.py
Inside my common.choices.__init__.py i have
from django.utils.translation import ugettext as _
SCALE_TYPE_CHOICES = (
(1,_('Lineare')),
(2,_('Logaritmica')),
(3,_('Esponenziale'))
)
GENDER_CHOICES = (
('male',_('Maschio')),
('female',_('Femmina')),
('any',_('Tutti')),
)
and in apps.simple.models.py
from common.choices import SCALE_TYPE_CHOICES, GENDER_CHOICES
.....
my passenger_wsgi.py
import sys, os
sys.path.insert(0, os.getcwd())
sys.path.insert(0, os.path.join(os.getcwd(),"path_to_my_project"))
sys.path.insert(0, os.path.join(os.getcwd(),"path_to_my_project/common"))
os.environ['DJANGO_SETTINGS_MODULE'] = "project_name.settings"
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
In my dev server it works fine, but in my production server it throws and error "no module named choices"
manage.py shell
import common
print common
<module 'common' from 'absolute_project_path/common/__init__.pyc'>
passenger_wsgi.py
import sys, os
sys.path.insert(0, os.getcwd())
sys.path.insert(0, os.path.join(os.getcwd(),"path_to_my_project"))
sys.path.insert(0, os.path.join(os.getcwd(),"path_to_my_project/common"))
os.environ['DJANGO_SETTINGS_MODULE'] = "project_name.settings"
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
import common
print common
Outputs
<module 'common' from 'absolute_project_path/common/__init__.pyc'>
Any Ideas?
Thanks!