├── .gitignore ├── .gitpod.dockerfile ├── .gitpod.yml ├── .vscode ├── arctictern.py ├── heroku_config.sh ├── init_tasks.sh ├── make_url.py ├── settings.json └── uptime.sh └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/HEAD/.gitpod.dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.vscode/arctictern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/HEAD/.vscode/arctictern.py -------------------------------------------------------------------------------- /.vscode/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/HEAD/.vscode/heroku_config.sh -------------------------------------------------------------------------------- /.vscode/init_tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/HEAD/.vscode/init_tasks.sh -------------------------------------------------------------------------------- /.vscode/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/HEAD/.vscode/make_url.py -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/uptime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/HEAD/.vscode/uptime.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/HEAD/README.md --------------------------------------------------------------------------------