/cms

Want something like WordPress but in python? Well, here comes batteries included CMS with everything you could think of.

Primary LanguagePython

CMS (Content Management System)

cms

Something like WordPress but in python. Batteries included CMS with everything that you may need to host a complete website for blog, news, magazines or anything similar.

Table of Contents

Features

  • Customizable Homepage
  • Posts
  • Comments
  • Users
  • Pages
  • Categories
  • Tags
  • Ads
  • Menu (Top, Main, Bottom)
  • Scalable
  • Mobile Responsive
  • Fast
  • Different dashboard for users and admin

Usage

  1. First, clone this project,
    git clone https://github.com/mearjunsingh/cms.git

  1. Then get inside that folder,
    cd cms

  1. Now make sure you have python installed. It is a best practice to install Python projects in a Virtual Environment. To install and create Virtual Envronment,
    pip install virtualenv
    virtualenv venv

  1. Now activate virtualenv,
    • In windows
      venv\Scripts\activate
    • In Linux
      source venv/bin/activate

  1. Then install dependencies. To do that,
    pip install -r requirements.txt

  1. Now we are ready to run the project. But before that, you must migrate all migrations. Here is how,
    python manage.py migrate

  1. You can add superuser by,
    python manage.py createsuperuser
    This step is optional but remember, lot of features are only available for superuser.

  1. Finally, ready to run the project. Run this command,
    python manage.py runserver

  1. Then locate http://127.0.0.1:8000/ in your favorite web browser.

Contributing for project

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.