├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE.txt ├── README.rst ├── data.json ├── manage.py ├── requirements.txt └── src ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-cms-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-cms-demo/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-cms-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-cms-demo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-cms-demo/HEAD/README.rst -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-cms-demo/HEAD/data.json -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-cms-demo/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-cms-demo/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-cms-demo/HEAD/src/settings.py -------------------------------------------------------------------------------- /src/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-cms-demo/HEAD/src/urls.py -------------------------------------------------------------------------------- /src/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-cms-demo/HEAD/src/wsgi.py --------------------------------------------------------------------------------