Skip to content

elmcrest/feincms3-example

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

feincms3 example project

Clone this repository:

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

Setup a virtualenv:

python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt

Create the database and maybe adapt the connection parameters in app/settings.py:

createdb feincms3_example

Run migrations and create a superuser:

./manage.py migrate
./manage.py createsuperuser

Import the fixtures:

./manage.py loaddata fixtures/pages.json
./manage.py loaddata fixtures/articles.json

Start the runserver:

./manage.py runserver

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

About

Example feincms3 project providing a pages and an article app

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 86.7%
  • HTML 12.3%
  • JavaScript 1.0%