39
You don’t need a browser extension to accomplish auto refreshes. Take a look at https://github.com/tjwalch/django-livereload-server.
I posted a more extensive answer about this at https://stackoverflow.com/a/36961244/2950621
It works by using a manage.py command (server) to monitor your .js and other static files. The server sends a signal to the browser via websockets. There is some client-side code injected on every page. The injected code responds to the signal and refresh the browser.
18
Install this django app:
pip install django-livesync
On your django settings file add something like:
INSTALLED_APPS = (
'...',
'livesync',
'django.contrib.staticfiles',
'...',
)
MIDDLEWARE_CLASSES = (
'livesync.core.middleware.DjangoLiveSyncMiddleware',
)
Beware to register ‘livesync’ before ‘django.contrib.staticfiles’ if you are using it.
Now, just start your development server:
python manage.py runserver
Check this out for more details: https://github.com/fabiogibson/django-livesync
- [Django]-How to get all users of a group in Django?
- [Django]-How do I install psycopg2 for Python 3.x?
- [Django]-How to define a default value for a custom Django setting
6
Using python manage.py runserver
is what most use. You’ll have to use another tool like: http://livejs.com/ to refresh the browser itself since Django really isn’t aware of it.
- [Django]-Django substr / substring in templates
- [Django]-What is the SQL ''LIKE" equivalent on Django ORM queries?
- [Django]-Django default settings convention for pluggable app?
5
Frustrated with all the explicit refreshes, I created a browser extension, for both Firefox and Chrome, to automate this. The extension works with a Django app that you add to your app list in INSTALLED_APPS. You can find out more at the github repo.
Though the repo has entire source code, the extensions are also available in the respective web store. Just search for ‘Django Auto Refresh’. With these, you just need to copy the app into our project’s folder and include it via INSTALLED_APPS. I wanted to add a pip setup script, but haven’t found the time to do it.
HTH. Apologies if this sounds like self promotion.
- [Django]-Python Django Rest Framework UnorderedObjectListWarning
- [Django]-Django self-referential foreign key
- [Django]-What does on_delete do on Django models?
1
I tried several answers here. But the browser did not seem to show the recent changes of the code. It worked for me when I opened Chrome in Incognito Mode.
- [Django]-How to fix error "ERROR: Command errored out with exit status 1: python." when trying to install django-heroku using pip
- [Django]-Django "Remember Me" with built-in login view and authentication form
- [Django]-How do I display the Django '__all__' form errors in the template?