├── .gitignore ├── Dockerfile ├── README.md ├── __init__.py ├── circle.yml ├── config.py ├── docker-compose.yml ├── manage.py ├── requirements.txt ├── start.sh └── todoapp ├── __init__.py ├── api.py ├── apps.py ├── fixtures ├── fixtures_tests.py └── todos.yaml ├── models.py ├── static ├── bootstrap-responsive.css ├── bootstrap.css ├── bootstrap.js └── jquery.js ├── templates ├── 404.html ├── 500.html ├── index.html ├── layout.html ├── new.html └── view.html └── tests ├── api_smoke_tests.yml ├── functional_tests.py ├── integration_tests.py ├── locustfile.py └── unit_tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/circle.yml -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/config.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/start.sh -------------------------------------------------------------------------------- /todoapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todoapp/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/api.py -------------------------------------------------------------------------------- /todoapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/apps.py -------------------------------------------------------------------------------- /todoapp/fixtures/fixtures_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/fixtures/fixtures_tests.py -------------------------------------------------------------------------------- /todoapp/fixtures/todos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/fixtures/todos.yaml -------------------------------------------------------------------------------- /todoapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/models.py -------------------------------------------------------------------------------- /todoapp/static/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/static/bootstrap-responsive.css -------------------------------------------------------------------------------- /todoapp/static/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/static/bootstrap.css -------------------------------------------------------------------------------- /todoapp/static/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/static/bootstrap.js -------------------------------------------------------------------------------- /todoapp/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/static/jquery.js -------------------------------------------------------------------------------- /todoapp/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/templates/404.html -------------------------------------------------------------------------------- /todoapp/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/templates/500.html -------------------------------------------------------------------------------- /todoapp/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/templates/index.html -------------------------------------------------------------------------------- /todoapp/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/templates/layout.html -------------------------------------------------------------------------------- /todoapp/templates/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/templates/new.html -------------------------------------------------------------------------------- /todoapp/templates/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/templates/view.html -------------------------------------------------------------------------------- /todoapp/tests/api_smoke_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/tests/api_smoke_tests.yml -------------------------------------------------------------------------------- /todoapp/tests/functional_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/tests/functional_tests.py -------------------------------------------------------------------------------- /todoapp/tests/integration_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/tests/integration_tests.py -------------------------------------------------------------------------------- /todoapp/tests/locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/tests/locustfile.py -------------------------------------------------------------------------------- /todoapp/tests/unit_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanteixeira/todoapp-flask/HEAD/todoapp/tests/unit_tests.py --------------------------------------------------------------------------------