├── .editorconfig ├── .gitattributes ├── .gitignore ├── README-PRODUCTION.md ├── README.md ├── Vagrantfile ├── _conf └── vagrant_setup.sh └── requirements.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminehaddad/django-environment-in-vagrant/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminehaddad/django-environment-in-vagrant/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminehaddad/django-environment-in-vagrant/HEAD/.gitignore -------------------------------------------------------------------------------- /README-PRODUCTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminehaddad/django-environment-in-vagrant/HEAD/README-PRODUCTION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminehaddad/django-environment-in-vagrant/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminehaddad/django-environment-in-vagrant/HEAD/Vagrantfile -------------------------------------------------------------------------------- /_conf/vagrant_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminehaddad/django-environment-in-vagrant/HEAD/_conf/vagrant_setup.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminehaddad/django-environment-in-vagrant/HEAD/requirements.txt --------------------------------------------------------------------------------