├── Docker-compose.yml ├── Dockerfile ├── README.md ├── TodoApp ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── settings.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── wsgi.cpython-39.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── db.sqlite3 ├── manage.py ├── preview └── todo.png ├── requirements.txt └── todo ├── __init__.py ├── __pycache__ ├── __init__.cpython-39.pyc ├── admin.cpython-39.pyc ├── apps.cpython-39.pyc ├── models.cpython-39.pyc ├── urls.cpython-39.pyc └── views.cpython-39.pyc ├── admin.py ├── apps.py ├── migrations ├── 0001_initial.py ├── __init__.py └── __pycache__ │ ├── 0001_initial.cpython-39.pyc │ └── __init__.cpython-39.pyc ├── models.py ├── static ├── css │ ├── bootstrap.min.css │ └── main.css └── js │ ├── bootstrap.min.js │ ├── jquery-3.2.1.slim.min.js │ └── popper.min.js ├── templates └── todo_temp │ ├── base.html │ ├── footer_references.html │ ├── header_references.html │ └── index.html ├── tests.py ├── urls.py └── views.py /Docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '4' 2 | services: 3 | web: 4 | build: . 5 | command: python3 manage.py runserver 0.0.0.0:3000 6 | ports: 7 | - 3000:3000 -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM python:3 2 | WORKDIR /app 3 | ADD . /app 4 | COPY ./requirements.txt /app/requirements.txt 5 | RUN pip install -r requirements.txt 6 | COPY . /app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |