A reusable Django application that allows you to put your Django site into maintenance mode.
Users logged in to /admin are excluded.
To get the latest stable release from PyPi
$ pip install django-time-out
To get the latest commit from GitHub
$ pip install -e git+git://git.com:sparky300/django-time-out.git#egg=time_out
Add time_out
to your INSTALLED_APPS
INSTALLED_APPS = (
...,
'time_out',
)
Add down_time middleware class to your settings.
'time_out.middleware.DownTimeMiddleware',
Don't forget to migrate your database
./manage.py migrate time_out
This application simply runs middleware that checks to see if the site is down for maintenance based on scheduled maintenance dates/times.
Note: Time Out uses process_request with one database trip, means there will be a small performance hit on every request.
If you want to contribute to this project, please perform the following steps...
# Fork this repository
# Clone your fork
$ mkvirtualenv -p python2.7 django-time-out
$ python setup.py install
$ pip install -r dev_requirements.txt
$ git co -b feature_branch master
# Implement your feature and tests
$ git add . && git commit
$ git push -u origin feature_branch
# Send us a pull request for your feature branch