├── .gitignore ├── LICENSE ├── README.md ├── catalog-info.yaml ├── django_static ├── __init__.py ├── asgi.py ├── settings.py ├── storage_backends.py ├── urls.py └── wsgi.py ├── img.png ├── manage.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/django-static-files-s3-cloudfront/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/django-static-files-s3-cloudfront/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/django-static-files-s3-cloudfront/HEAD/README.md -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/django-static-files-s3-cloudfront/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /django_static/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_static/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/django-static-files-s3-cloudfront/HEAD/django_static/asgi.py -------------------------------------------------------------------------------- /django_static/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/django-static-files-s3-cloudfront/HEAD/django_static/settings.py -------------------------------------------------------------------------------- /django_static/storage_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/django-static-files-s3-cloudfront/HEAD/django_static/storage_backends.py -------------------------------------------------------------------------------- /django_static/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/django-static-files-s3-cloudfront/HEAD/django_static/urls.py -------------------------------------------------------------------------------- /django_static/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/django-static-files-s3-cloudfront/HEAD/django_static/wsgi.py -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/django-static-files-s3-cloudfront/HEAD/img.png -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/django-static-files-s3-cloudfront/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/django-static-files-s3-cloudfront/HEAD/requirements.txt --------------------------------------------------------------------------------