django with buildout template skeleton based on cookiecutter
Adam Cupiał
- Install cookiecutter (https://github.com/audreyr/cookiecutter)
$ pip install cookiecutter
- build the template
$ cookiecutter https://github.com/adamcupial/cookiecutter-django-buildout
- go to your project's directory and read README.rst file
- project_name, default: 'project'
- repo_name, default:'project_repository'
- author_name, default: 'Joe Doe'
- author_email, default: '[email protected]'
- description, default: 'Short description of the project'
- migration_engine, default:'south', one of 'south', 'none'
- admin_engine, default: 'grappelli', one of 'grappelli', 'default', 'none'
- django_version, default: '1.6'
- database_engine, default: 'sqlite', one of 'sqlite', 'postgres', 'mysql'
- use_env_for_configuration, default: 'yes'
- use_compass, default: 'yes'
- use_bootstrap, default: 'yes'
This tool is based on Cookiecutter (https://github.com/audreyr/cookiecutter) and django-buildout-template (https://github.com/onjin/django-buildout-template)