Socket
Book a DemoInstallSign in
Socket

django-omCmsMain

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-omCmsMain

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

0.0.34
pipPyPI
Maintainers
1

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! ;-)

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

django-admin startproject [yourProjectName]

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

    INSTALLED_APPS = [ ... 'omCmsMain', ]

  • 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')), ]

  • Run python manage.py migrate to create the omCmsMain models.

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

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

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.