Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 749 Bytes

README.rst

File metadata and controls

34 lines (22 loc) · 749 Bytes

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

Maybe adapt the database connection parameters in app/settings.py, if you don’t want to use SQLite.

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!