Hi i'm trying to deploy a simple django app with openshift, i followed this tutorial: https://github.com/rancavil/django-openshift-quickstart/wiki/Tutorial-How-create-an-application-with-Django-1.6-on-Openshift
except for the first part where i used openshift's django cartridge instead. after running the setup.py install it created 3 directories: dist, build and AppName.egg-info
so now the relevant part of my directory stucture looks like this:
.
├── build
│ └── bdist.linux-x86_64
├── data
├── dist
│ └── AppName-1.0-py2.7.egg
├── libs
│ └── openshiftlibs.py
├── openshiftlibs.py
├── AppName.egg-info
│ ├── dependency_links.txt
│ ├── PKG-INFO
│ ├── requires.txt
│ ├── SOURCES.txt
│ └── top_level.txt
├── README.md
├── setup.py
└── wsgi
├── application
├── myproject
Since those directories are auto generated my question is should i version them too? better yet can someone please provide a sample gitignore for a django site hosted on openshift? thanks.