All Projects → django-fiber → Django Fiber

django-fiber / Django Fiber

Licence: other
Django Fiber - a simple, user-friendly CMS for all your Django projects

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Django Fiber

Django Arctic
Django Arctic is a framework that simplifies the creation of custom content management systems.
Stars: ✭ 68 (-89.59%)
Mutual labels:  cms, django
Djangocms Text Ckeditor
Text Plugin for django CMS using CKEditor 4
Stars: ✭ 126 (-80.7%)
Mutual labels:  cms, django
Mezzanine Api
RESTful web API for Mezzanine CMS
Stars: ✭ 84 (-87.14%)
Mutual labels:  cms, django
Djangocms Picture
django CMS Picture is a plugin for django CMS that allows you to add images on your site.
Stars: ✭ 37 (-94.33%)
Mutual labels:  cms, django
Djangocms Admin Style
django CMS Admin Style is a Django Theme tailored to the needs of django CMS.
Stars: ✭ 282 (-56.81%)
Mutual labels:  cms, django
Django Minicms
Django 开发简易的内容管理系统
Stars: ✭ 56 (-91.42%)
Mutual labels:  cms, django
Wagtail
A Django content management system focused on flexibility and user experience
Stars: ✭ 11,387 (+1643.8%)
Mutual labels:  cms, django
Django Filer
File and Image Management Application for django
Stars: ✭ 1,384 (+111.94%)
Mutual labels:  cms, django
Django Page Cms
Official Django page CMS git repository
Stars: ✭ 277 (-57.58%)
Mutual labels:  cms, django
Cms
Club Management System of amFOSS, powered by CMS
Stars: ✭ 263 (-59.72%)
Mutual labels:  cms, django
Djangocms Googlemap
django CMS Google Map is a set of plugins for django CMS that allow you to implement Google Map into your website.
Stars: ✭ 35 (-94.64%)
Mutual labels:  cms, django
Coderedcms
A content management system for marketing websites based on Django and Wagtail.
Stars: ✭ 386 (-40.89%)
Mutual labels:  cms, django
Ezlog
Easy blog system powered by django
Stars: ✭ 34 (-94.79%)
Mutual labels:  cms, django
Django Cms
The easy-to-use and developer-friendly enterprise CMS powered by Django
Stars: ✭ 8,522 (+1205.05%)
Mutual labels:  cms, django
Jbt blog
一个基于Django2.0+Python3.6的博客/A simple blog based on python3.6 and Django2.0.
Stars: ✭ 137 (-79.02%)
Mutual labels:  cms, django
Mediacms
MediaCMS is a modern, fully featured open source video and media CMS, written in Python/Django and React, featuring a REST API.
Stars: ✭ 313 (-52.07%)
Mutual labels:  cms, django
Puput
A Django blog app implemented in Wagtail
Stars: ✭ 450 (-31.09%)
Mutual labels:  cms, django
Core
Source Code for dotCMS Java Enterprise Content Management System
Stars: ✭ 615 (-5.82%)
Mutual labels:  cms
Sulu Standard
This repository is not longer the recommended way to start a sulu project. Use:
Stars: ✭ 636 (-2.6%)
Mutual labels:  cms
Django River
Django workflow library that supports on the fly changes ⛵
Stars: ✭ 609 (-6.74%)
Mutual labels:  django

Django Fiber

|Travis build image| |PyPI version| |Coverage Status|

An important message about this project

Hi Django Fiber enthusiasts! This project was started by the people at Ride The Pony, Leukeleu and Jouw Omgeving. They started Django Fiber in 2011, because they wanted a good, simple Django CMS available. Lots of people felt the same, which was why Django Fiber became pretty popular. And it is still going strong in lots of sites, so we hear :)

Later, they discovered Wagtail <https://wagtail.io/>, and found it to be even better than their own creation. So they decided to move on. Nevertheless, Django Fiber was popular, used in many websites, and they didn't want to just drop it. At the start of 2017 they handed over control of the project to a new group of maintainers - the discussion about this handover can be found in issue #244 <https://github.com/django-fiber/django-fiber/issues/244>.

Currently Django Fiber is in 'maintenance mode'. What this means it that it will be updated to run with the latest releases of Django - and of other packages that Django Fiber depends on. However, no effort will be made to add new features.

If a user really wants a new feature added - then a well-written PR will be reviewed and considered. But other than that, Django Fiber is staying exactly as it is :)

About Django Fiber

Do you want to see a Django Fiber screencast, to get a feel for what it can do for you? Check it out on Vimeo <http://vimeo.com/django-fiber/django-fiber>_

Convinced? Want to use Django Fiber in your own Django project? Then follow the instructions below.

Requirements

These dependencies are automatically installed::

Pillow>=2.2.1
django-mptt>=0.8
django_compressor>=2.0
djangorestframework>=3.4
easy-thumbnails>=2.2

Installation

We're assuming you are using Django 1.9-2.0. Then simply install Fiber using pip::

$ pip install django-fiber

Setup


Open **settings.py** and add the following to your INSTALLED_APPS

::

   INSTALLED_APPS = (
        ...
        'mptt',
        'compressor',
        'easy_thumbnails',
        'fiber',
        ...
   )

Add Fiber to the MIDDLEWARE_CLASSES list

::

    import django.conf.global_settings as DEFAULT_SETTINGS

    MIDDLEWARE_CLASSES = DEFAULT_SETTINGS.MIDDLEWARE_CLASSES + (
        ...
        'fiber.middleware.ObfuscateEmailAddressMiddleware',
        'fiber.middleware.AdminPageMiddleware',
    )

(Or, add the same items to ``MIDDLEWARE`` if you are using Django 1.10 or later.)

Add the request context processor

::

    TEMPLATES = [
        {
            ...
            'OPTIONS': {
                'context_processors': [
                    ...
                    'django.template.context_processors.request',
                ]
            }
        },
    ]

And configure compressor

::

    BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

    STATIC_ROOT = os.path.join(BASE_DIR, 'static')
    STATIC_URL = '/static/'
    STATICFILES_FINDERS = DEFAULT_SETTINGS.STATICFILES_FINDERS + [
        'compressor.finders.CompressorFinder',
    ]

Edit your **urls.py** to add the Fiber site to your url-patterns

::

    from django.urls import include, path, re_path
    from fiber.views import page

    urlpatterns = [
        ...
        path('api/v2/', include('fiber.rest_api.urls')),
        path('admin/fiber/', include('fiber.admin_urls')),
        ...
        re_path('', page),
    ]

Post-installation
-----------------

Create database tables::

    $ python manage.py migrate

All static Fiber files need to be symlinked in (or copied to) your static files folder if you're not on your dev machine::

    $ python manage.py collectstatic --link

Further documentation
---------------------

For further usage and configuration details take a look at our
documentation project at
`readthedocs <https://django-fiber.readthedocs.org/>`__.

Changelog
---------

See `CHANGELOG.md <https://github.com/django-fiber/django-fiber/blob/master/CHANGELOG.rst>`_
for the latest changes.

|Analytics|

.. |Travis build image| image:: https://secure.travis-ci.org/django-fiber/django-fiber.svg?branch=dev
   :target: http://travis-ci.org/#!/django-fiber/django-fiber
.. |PyPI version| image:: https://img.shields.io/pypi/v/django-fiber.svg
   :target: https://pypi.python.org/pypi/django-fiber/
.. |Coverage Status| image:: https://coveralls.io/repos/django-fiber/django-fiber/badge.svg?branch=dev
   :target: https://coveralls.io/r/django-fiber/django-fiber
.. |Analytics| image:: https://ga-beacon.appspot.com/UA-24341330-5/django-fiber/readme
   :target: https://github.com/django-fiber/django-fiber
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].