How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "nasvks/djangocms-quickstart"
config.vm.box_version = "1.0.0"
end
vagrant init nasvks/djangocms-quickstart \
--box-version 1.0.0
vagrant up
This version was created almost 4 years ago.
django CMS 3.7.1 using default SQLite 3 database on Ubuntu Server 18.04.3 LTS (hashicorp/bionic64).
Note that before deploying to production, you should migrate to one of the supported production-ready databases.
See the Installing django CMS tutorial for a list of installation instructions that were followed to create this box.
The following commands have been added to the script /home/vagrant/start-djangocms.sh.
source /home/vagrant/env/bin/activate &&
cd /home/vagrant/tutorial-project/mysite/ &&
python3 manage.py runserver 0.0.0.0:8000
The following line has been added to /etc/crontab to start django CMS mysite automatically.
@reboot vagrant /home/vagrant/start-djangocms.sh
Once you've launched the box, navigate to http://127.0.0.1:8000 on the host and login to django CMS using admin/admin.