Hi, I want to reach out to other sites admins who are using Appseed templates - as I am. I am curious about the settings.py that they found to work well here at pythonanywhere (PA).
For example, appseed sets Django settings.py: STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') # contains STATICFILES_DIRS = [os.path.join(BASE_DIR,'static'),]
(this seems reversed to me - am I wrong? FYI)
I set static directories here to: /static/ /home/user/app_name/static/ /staticfiles/ /home/user/app_name/staticfiles/
I am getting errors at my website uploading static scripts -
In Appseed: the scripts.py file states: % static "directory/of/css/file"
But PA's Django implementation stops them from loading with a strict mime type error.
Are there any other things to watch out for?