Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/megane42/vagrant-python2-django197
A Vagrantfile to build django-ready VM.
https://github.com/megane42/vagrant-python2-django197
Last synced: 7 days ago
JSON representation
A Vagrantfile to build django-ready VM.
- Host: GitHub
- URL: https://github.com/megane42/vagrant-python2-django197
- Owner: megane42
- Created: 2016-06-20T16:14:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-07-11T15:07:57.000Z (over 8 years ago)
- Last Synced: 2024-11-07T22:12:54.350Z (about 2 months ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vagrantfile for Django
## Requirement
* Virtualbox
* Vagrant## Build VM
On your host machine:
* `$ vagrant plugin install vagrant-vbguest`
* `$ vagrant up`
* This may fail with error `Failed to mount folders in Linux guest` just once.
* `$ vagrant reload`## Start Django
On your guest machine:
* `$ django-admin startproject mysite`
* `$ python manage.py runserver 0.0.0.0:8000`