LiveReload functionality integrated with your Django development environment
Project description
This django app adds a management command that starts a livereload server watching all your static files and templates as well as a custom runserver command that issues livereload requests when the development server is ready after a restart.
Installation
Install package:
$ pip install django-livereload-server
Add 'livereload' to the INSTALLED_APPS, before 'django.contrib.staticfiles' if this is used:
INSTALLED_APPS = (
...
'livereload',
...
)
Add 'livereload.middleware.LiveReloadScript' to the MIDDLEWARE_CLASSES (probably at the end):
MIDDLEWARE_CLASSES = (
...
'livereload.middleware.LiveReloadScript',
)
Configuration
If you need the livereload server to use a different port than the default 35729, specify it by setting LIVERELOAD_PORT in settings.py.
Usage
Start the livereload server with:
$ ./manage.py livereload
Extra files and/or paths to watch for changes can be added as positional arguments.
Start the development server as usual with ./manage.py runserver. The command now accepts two additional options:
--nolivereload to disable livereload functionality
--livereload-port to override both default and settings file specified port
Background
This project is based on a merge of python-livereload and django-livereload, excellent projects both and even better for smooth django development when combined.
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
File details
Details for the file django-livereload-server-0.1.tar.gz.
File metadata
- Download URL: django-livereload-server-0.1.tar.gz
- Upload date:
- Size: 18.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6979bac3268902413d89c9b46f09ea70bad6d296b730b4ff52504f0891e669d
|
|
| MD5 |
715fdcd309e21282f64735e0cd7b7046
|
|
| BLAKE2b-256 |
2525419ca178b7fda98b7cfebeed4b0207d20d8a1db49c5e5de91bd3131a90aa
|