|
|
|
|
|
by dguaraglia
3364 days ago
|
|
Not sure that's really necessary with Django. Lavarel, like most PHP frameworks, require an HTTP server configured with just the right version of PHP, etc. just for development. Django is much simpler: - django-admin startproject MyProject
- cd MyProject
- python manage.py migrate
- python manage.py runserver That should give you a very decent development server without requiring VirtualBox or anything like that. I'd recommend following the official tutorial if you want to give it a spin. |
|
There should be something like this for Django with all the "de facto" tech that a dev might need.