Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/feincms/feincms3-example
Example feincms3 project providing a pages and an article app
https://github.com/feincms/feincms3-example
cms django feincms3
Last synced: 2 months ago
JSON representation
Example feincms3 project providing a pages and an article app
- Host: GitHub
- URL: https://github.com/feincms/feincms3-example
- Owner: feincms
- Created: 2016-06-25T12:18:34.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-07-29T10:05:26.000Z (5 months ago)
- Last Synced: 2024-08-01T10:17:30.544Z (5 months ago)
- Topics: cms, django, feincms3
- Language: Python
- Homepage: https://feincms3.readthedocs.io
- Size: 63.5 KB
- Stars: 12
- Watchers: 3
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
- awesome - feincms/feincms3-example - Example feincms3 project providing a pages and an article app (django)
README
========================
feincms3 example project
========================Clone this repository::
git clone https://github.com/matthiask/feincms3-example/
cd feincms3-exampleSetup a virtualenv::
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txtMaybe 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 createsuperuserImport the fixtures::
./manage.py loaddata fixtures/pages.json
./manage.py loaddata fixtures/articles.jsonStart the runserver::
./manage.py runserver
Open ``http://127.0.0.1:8000/`` and ``http://127.0.0.1:8000/admin/`` and
dive in!