seshat.settings.local
Settings for local development of the Seshat project. Also used for non-production cloud development environments. Also used for GitHub Actions testing.
Attributes
| Set ALLOWED_HOSTS to allow the server to run without a domain name for local testing. | |
| Database settings for GitHub Actions. | |
| MIDDLEWARE defines the list of middleware classes that Django will use. | |
| Specifies static files storage for testing environments. | |
Module Contents
- seshat.settings.local.ALLOWED_HOSTS = ['127.0.0.1', '51.141.239.61', 'localhost']
- Set ALLOWED_HOSTS to allow the server to run without a domain name for local testing. 
- seshat.settings.local.CESIUM_ION_ACCESS_TOKEN
- seshat.settings.local.DATABASES
- Database settings for GitHub Actions. - Noindex:
 
- seshat.settings.local.GDAL_LIBRARY_PATH = '/usr/lib/libgdal.so'
- seshat.settings.local.MIDDLEWARE = ['django.middleware.security.SecurityMiddleware',...
- MIDDLEWARE defines the list of middleware classes that Django will use. 
- seshat.settings.local.STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.StaticFilesStorage'
- Specifies static files storage for testing environments. - Noindex:
 
- seshat.settings.local.django_settings_module
- seshat.settings.local.my_current_server = '127.0.0.1:8000'