- Twitter bootstrap 3
- django-annoying
- django-compressor
Create virtual environment, change project_name with your projects name :D
mkvirtualenv project_name
Install django
pip install django
Run django startproject with the --template option
django-admin.py startproject --template=https://github.com/netoxico/django-bootstrap/archive/master.zip project_name
Install requirements, for development
pip install -r requirements/development.txt
Set 'PROJECT_ENV' environment variable.
- 'development'
- 'production',
- 'staging'
If no 'PROJECT_ENV' especified takes 'development' settings as default
For development environment:
sudo sh -c 'echo "export PROJECT_ENV=development" >> /etc/profile.d/environment.sh' && source /etc/profile.d/environment.sh
Done.