1 Aug ‘14

Sheila setup a rackspace VM for me to deploy the Django app. It’s the first time I’m using (and learning) Fabric.

Issues faced:

Fatal error: sudo() received nonzero return code 1 while executing!

Requested: source /home/bugtracker/venvs/2014-08-01.3/bin/activate && python manage.py collectstatic --noinput --clear --settings=bugtracker.settings.production
Executed: sudo -S -p 'sudo password:'  -u "bugtracker"  /bin/bash -l -c "cd /home/bugtracker/site/bugtracker/bugtracker && source /home/bugtracker/venvs/2014-08-01.3/bin/activate && python manage.py collectstatic --noinput --clear --settings=bugtracker.settings.production"

Aborting.
Disconnecting from 23.253.42.97... done.

Work in progress.

 
0
Kudos
 
0
Kudos

Now read this

6 Aug ‘14

For the past couple of days I’ve been resolving issues in deployment of the website. Things I did today: Fixed DATABASES in production.py. Created table in database and synced it. It was giving an error in loading static files. “Unknown... Continue →