Content Management

django CMS

Ensure python is installed and configured. Test with python --version.

  1. cd django-cms
  2. pip install virtualenv
  3. virtualenv env
  4. source env/bin/activate
  5. pip install -r requirements.txt
  6. python manage.py migrate
  7. python manage.py createsuperuser
  8. python manage.py runserver

Open your browser at http://localhost:8000.

Jekyll

Ensure ruby is installed and properly configured. There are some known issues on OSX El Capitan.

  1. gem install bundler (might not be required)
  2. bundle install
  3. jekyll new gh-pages
  4. cd gh-pages
  5. jekyll serve --watch --baseurl ""

Open your browser at http://localhost:4000.

Resources