I am creating a Django application and right now it's in development phase. I am using Google Cloud Storage, so I have to change settings accordingly, but after that I have to always run
python manage.py collectstatic
to show the changes in css or js file, no matter how small they are.
settings.py
STATIC_URL = 'static/'DEBUG = TrueDEFAULT_FILE_STORAGE = 'storages.backends.gcloud.GoogleCloudStorage'GS_BUCKET_NAME = 'videovogue'STATICFILES_STORAGE = 'storages.backends.gcloud.GoogleCloudStorage'service_account_key_path = os.getenv("GOOGLE_APPLICATION_CREDENTIALS")GS_CREDENTIALS = service_account.Credentials.from_service_account_file(service_account_key_path)
What is going wrong?MAX_FILE_SIZE = 209715200 # 200 MB