I've been trying to build my django project using Codeship, as describe here: Codeship Blog.
These are my setup commands:
pip install -r requirements.txt
python manage.py runserver
tar -czf release-backend.tgz .*
My requirements.txt contains Django==1.8.0
However, when run on codeship, build fails giving the error:
python: can't open file 'manage.py': [Errno 2] No such file or directory
Any idea what I'm doing wrong ?