Skip to main content

A simple Django CMS app to easily create a website and manage Web content.

Project description

Open Minds CMS
==============

Open Minds CMS - Content Management System

Simple CMS built in Python Django
It is aimed to quick deploy a website, using BootStrap and Material Design Light, with a minimal templating capabilities.

It still an ongoing project.

Please check the Docs: http://omcmsdocs.readthedocs.io/


Quick start
-----------

If you are impatient like me, itching to see something making noise and smoke, you can take this quick run! ;-)

1. Create a new Django Project
It is higly recomended that you use virtualenv to encapsulate it - https://virtualenv.pypa.io/

django-admin startproject [yourProjectName]

2. In [yourProjectName]/settings.py, add "omCmsMain" to your INSTALLED_APPS setting like this::

INSTALLED_APPS = [
...
'omCmsMain',
]

3. Edit [yourProjectName]/urls.py and make this changes:
3.1 Import include:
from django.conf.urls import url, include

3.2 Include the omCmsMain URLconf in your project urls.py **AFTER** admin URLs, like this:
urlpatterns = [
url(r'^admin/', admin.site.urls),
url(r'^', include('omCmsMain.urls')),
]

4. Run `python manage.py migrate` to create the omCmsMain models.

5. Start the development server and visit http://127.0.0.1:8000/admin/
to add content to your site.

6. Visit http://127.0.0.1:8000/ to see omCmsMain content.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-omCmsMain-0.0.34.tar.gz (1.7 MB view details)

Uploaded Source

File details

Details for the file django-omCmsMain-0.0.34.tar.gz.

File metadata

File hashes

Hashes for django-omCmsMain-0.0.34.tar.gz
Algorithm Hash digest
SHA256 48aae01b0627f9f1246ae36571ed71799c49a1ed8884819539e24632d035068b
MD5 099269e92eff07b4461c122caa796498
BLAKE2b-256 0a7d711b5aa8015a78e62b6382f87b238eacff8b67b940626196fe713259c56b

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page