Re: Restarting servers in development

2020-10-26 Thread Abhishek Choudhury
That's exactly what I was looking for. Thanks for your help. Thanks and Regards, Abhishek Choudhury Ph. no: +91 7903717967 On Mon, 26 Oct, 2020, 10:52 PM Andréas Kühne, wrote: > If you are running in production, make sure that you use something like > https://docs.djangoproject.com/en/3.1/ref

Re: Restarting servers in development

2020-10-26 Thread Andréas Kühne
If you are running in production, make sure that you use something like https://docs.djangoproject.com/en/3.1/ref/contrib/staticfiles/#manifeststaticfilesstorage for handling the css and js files. This will solve the problem automatically for you be adding a MD5 hash to the url of the file, which i

Re: Restarting servers in development

2020-10-26 Thread Abhishek Choudhury
Thanks a lot for the information. Will definitely try. Thanks and Regards, Abhishek Choudhury Ph. no: +91 7903717967 On Mon, 26 Oct, 2020, 10:26 PM Akinfolarin Stephen, < akinfolarinsteph...@gmail.com> wrote: > The reason why it is so is because of the browser caching capabilities > when the b

Re: Restarting servers in development

2020-10-26 Thread Akinfolarin Stephen
The reason why it is so is because of the browser caching capabilities when the browser see that you are trying to visit a page you visited previously it will load it from the cache if you want it to display the current content press CTRL F5 and you will your newly added content On Mon, Oct 26, 20