├── .DS_Store ├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── db.sqlite3 ├── docker-compose.yml ├── k8s ├── MYSQL-DB │ ├── configMap.yml │ ├── deployment.yml │ └── secret.yml ├── deployment.yaml ├── pod.yaml └── service.yaml ├── manage.py ├── staticfiles ├── css │ └── style.css └── todoApp.png ├── todoApp ├── __init__.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py ├── todos ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20191201_2357.py │ ├── 0003_auto_20191202_0000.py │ ├── 0004_auto_20191202_0004.py │ ├── 0005_auto_20191202_0011.py │ ├── 0006_remove_todo_deadline.py │ ├── 0007_auto_20191202_0323.py │ ├── 0008_auto_20191202_0809.py │ └── __init__.py ├── models.py ├── templates │ └── todos │ │ ├── base.html │ │ └── index.html ├── tests.py ├── urls.py └── views.py └── volume └── store_data └── db.sqlite3 /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/.DS_Store -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /k8s/MYSQL-DB/configMap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/k8s/MYSQL-DB/configMap.yml -------------------------------------------------------------------------------- /k8s/MYSQL-DB/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/k8s/MYSQL-DB/deployment.yml -------------------------------------------------------------------------------- /k8s/MYSQL-DB/secret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/k8s/MYSQL-DB/secret.yml -------------------------------------------------------------------------------- /k8s/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/k8s/deployment.yaml -------------------------------------------------------------------------------- /k8s/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/k8s/pod.yaml -------------------------------------------------------------------------------- /k8s/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/k8s/service.yaml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/manage.py -------------------------------------------------------------------------------- /staticfiles/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/staticfiles/css/style.css -------------------------------------------------------------------------------- /staticfiles/todoApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/staticfiles/todoApp.png -------------------------------------------------------------------------------- /todoApp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todoApp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todoApp/settings.py -------------------------------------------------------------------------------- /todoApp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todoApp/urls.py -------------------------------------------------------------------------------- /todoApp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todoApp/views.py -------------------------------------------------------------------------------- /todoApp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todoApp/wsgi.py -------------------------------------------------------------------------------- /todos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todos/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/admin.py -------------------------------------------------------------------------------- /todos/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/apps.py -------------------------------------------------------------------------------- /todos/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/migrations/0001_initial.py -------------------------------------------------------------------------------- /todos/migrations/0002_auto_20191201_2357.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/migrations/0002_auto_20191201_2357.py -------------------------------------------------------------------------------- /todos/migrations/0003_auto_20191202_0000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/migrations/0003_auto_20191202_0000.py -------------------------------------------------------------------------------- /todos/migrations/0004_auto_20191202_0004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/migrations/0004_auto_20191202_0004.py -------------------------------------------------------------------------------- /todos/migrations/0005_auto_20191202_0011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/migrations/0005_auto_20191202_0011.py -------------------------------------------------------------------------------- /todos/migrations/0006_remove_todo_deadline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/migrations/0006_remove_todo_deadline.py -------------------------------------------------------------------------------- /todos/migrations/0007_auto_20191202_0323.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/migrations/0007_auto_20191202_0323.py -------------------------------------------------------------------------------- /todos/migrations/0008_auto_20191202_0809.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/migrations/0008_auto_20191202_0809.py -------------------------------------------------------------------------------- /todos/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/models.py -------------------------------------------------------------------------------- /todos/templates/todos/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/templates/todos/base.html -------------------------------------------------------------------------------- /todos/templates/todos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/templates/todos/index.html -------------------------------------------------------------------------------- /todos/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/tests.py -------------------------------------------------------------------------------- /todos/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/urls.py -------------------------------------------------------------------------------- /todos/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/todos/views.py -------------------------------------------------------------------------------- /volume/store_data/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/django-todo-cicd/HEAD/volume/store_data/db.sqlite3 --------------------------------------------------------------------------------