Development
Example of using Vagrant to install Django-cms I use KVM on my laptop so I use the provider “libvirt” Vagrant defaults to VirtualBox. You will need to have
Read More
Development
Home page for Django app Open the settings file and add the app to the list of installed apps. INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages',
Read More
Development
Python and Django initial setup Centos 7 Python Django sudo yum -y update sudo reboot sudo yum -y install python-pip sudo yum -y install virtualenv mkdir <projects> cd
Read More