Skip to main content

A simple Django app to switch your Django project between offline/online mode and display a 503 error page, while your django site is offline (under maintenance)

Project description

=====
Offline
=====

Offline is a simple Django app to put a Django Web application under
maintenance/offline mode using a simple interface under admin login.

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

1. Add "offline" to your INSTALLED_APPS setting like this:

INSTALLED_APPS = (
...
'offline',
)

2. Add the OfflineMiddleware to MIDDLEWARE_CLASSES list
(after SessionMiddleware and AuthenticationMiddleware) in settings.py
file of your project:

MIDDLEWARE_CLASSES = (
...
'offline.middleware.OfflineMiddleware',
)


3. Run `python manage.py syncdb` to create models for storing application status.

4. Visit the admin site to set your Web application to offline mode by
setting offline flag (you'll need the Admin app enabled).

5. You can customize the message shown on the website while the web application is in offline mode.

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-offline-0.1.tar.gz (4.0 kB view hashes)

Uploaded Source

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