Skip to content

michaelkuty/feincms3-example

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

feincms3 example project

Clone this repository:

git clone https://github.com/matthiask/feincms3-example/
cd feincms3-example

Setup a virtualenv (Python 3 is recommended for new projects, but you can also use Python 2.7):

virtualenv -p python3 venv
venv/bin/pip install -r requirements.txt

Run migrations and create a superuser:

venv/bin/python manage.py migrate
venv/bin/python manage.py createsuperuser

Import the fixtures:

venv/bin/python manage.py loaddata fixtures/pages.json
venv/bin/python manage.py loaddata fixtures/articles.json

Start the runserver:

venv/bin/python manage.py runserver

Open http://127.0.0.1:8000/ and http://127.0.0.1:8000/admin/ and dive in!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 87.2%
  • HTML 11.8%
  • JavaScript 1.0%