django-adminlte2
django-adminlte2 copied to clipboard
How to use static files when debug false?
When I change debug false to in setting.py. The static files(css,js,...) are not load automatically. Is there any way to load that file. I am totally new to python and django.
You need to set up static paths in your settings.py file and run this comand:
python manage.py collectstatic
Look this link also: https://docs.djangoproject.com/en/2.2/howto/static-files/