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.
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
Release history Release notifications | RSS feed
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)