Technologies

  • Python 3.8
  • Django 3.0.10
  • Django CMS 3.7.4

Install

Step 1: Create a virtual environment

python3 -m venv mysite-env
source mysite-env/bin/activate

Step 2: Update pip

pip install --upgrade pip
cd mysite-demo

Step 3: Install dependencies

pip install -r requirements.txt

Step 4: Migrate

python3 manage.py makemigrations mysite
python3 manage.py migrate mysite

Step 5: Create Admin Login User CMS

python3 manage.py createsuperuser

Step 6: Run CMS

python3 manage.py runserver