A simply Vagrant instance to run python/django projects, this project can be executed under Linux, OSX or Windows.
- Virtualbox - To create virtual machines
- Vagrant - to create vagrant instance
Open your terminal and go to the project dir
This command creates or start the vagrant instance
$ vagrant upThis command allow to login on Linux virtual machine.
$ vagrant sshThis installation creates a python virtualenv called: env, to use and install packages on it do the following:
$ workon env
(env)$ cd vagrant
(env)$ pip install package-nameTo turn the vagrant instance off execute next command:
$ vagrant haltand if you want to destroy the vagrant instance, execute next command
$ vagrant destroy Enjoy it and improve it!