├── .dockerignore ├── .gitignore ├── .gitlab-ci.yml ├── Dockerfile ├── README.md ├── apps ├── __init__.py └── polling │ ├── __init__.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ └── views.py ├── conf ├── __init__.py ├── celery.py ├── settings.py ├── urls.py └── wsgi.py ├── devops ├── deploy.sh └── nginx.conf ├── docker-compose.yml ├── manage.py └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- 1 | .git -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/README.md -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/polling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/polling/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/apps/polling/apps.py -------------------------------------------------------------------------------- /apps/polling/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/apps/polling/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/polling/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/polling/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/apps/polling/models.py -------------------------------------------------------------------------------- /apps/polling/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/conf/__init__.py -------------------------------------------------------------------------------- /conf/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/conf/celery.py -------------------------------------------------------------------------------- /conf/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/conf/settings.py -------------------------------------------------------------------------------- /conf/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/conf/urls.py -------------------------------------------------------------------------------- /conf/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/conf/wsgi.py -------------------------------------------------------------------------------- /devops/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/devops/deploy.sh -------------------------------------------------------------------------------- /devops/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/devops/nginx.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toert/django-gitlab-ci-guide/HEAD/requirements.txt --------------------------------------------------------------------------------