Re: Deployment of django project using setuptools

2014-05-02 Thread Tomáš Ehrlich
I've started experimenting with this idea and created simple app: https://github.com/elvard/django-deploy I would very appreciate any opinions, ideas or second thoughts. Cheers, Tom Dne pátek, 2. května 2014 19:13:30 UTC+2 Tomáš Ehrlich napsal(a): > > Hi there, > when I deploy my django p

Deployment of django project using setuptools

2014-05-02 Thread Tomas Ehrlich
Hi there, when I deploy my django projects I always run several commands after pulling latest code from repository. I've started using setup.py few weeks ago which adds manage.py script into $VENV/bin. Basicaly, I always do: source $VENV/bin/activate export DJANGO_SETTINGS_MODULE=... git pull py