├── .dockerignore ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── auto-template-creation.yml │ └── test-template.yml ├── .gitignore ├── .vscode └── extensions.json ├── Dockerfile ├── LICENSE ├── Package.swift ├── Public └── .gitkeep ├── README.md ├── Resources └── Views │ └── index.leaf ├── Sources └── App │ ├── Controllers │ ├── .gitkeep │ └── TodoController.swift │ ├── DTOs │ └── TodoDTO.swift │ ├── Migrations │ └── CreateTodo.swift │ ├── Models │ ├── .gitkeep │ └── Todo.swift │ ├── configure.swift │ ├── entrypoint.swift │ └── routes.swift ├── TEMPLATE_README.md ├── Tests ├── .gitkeep └── AppTests │ └── AppTests.swift ├── docker-compose.yml └── manifest.yml /.dockerignore: -------------------------------------------------------------------------------- 1 | .build/ 2 | .swiftpm/ 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @0xTim @gwynne 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-template-creation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/.github/workflows/auto-template-creation.yml -------------------------------------------------------------------------------- /.github/workflows/test-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/.github/workflows/test-template.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/Package.swift -------------------------------------------------------------------------------- /Public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Views/index.leaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/Resources/Views/index.leaf -------------------------------------------------------------------------------- /Sources/App/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/App/Controllers/TodoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/Sources/App/Controllers/TodoController.swift -------------------------------------------------------------------------------- /Sources/App/DTOs/TodoDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/Sources/App/DTOs/TodoDTO.swift -------------------------------------------------------------------------------- /Sources/App/Migrations/CreateTodo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/Sources/App/Migrations/CreateTodo.swift -------------------------------------------------------------------------------- /Sources/App/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/App/Models/Todo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/Sources/App/Models/Todo.swift -------------------------------------------------------------------------------- /Sources/App/configure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/Sources/App/configure.swift -------------------------------------------------------------------------------- /Sources/App/entrypoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/Sources/App/entrypoint.swift -------------------------------------------------------------------------------- /Sources/App/routes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/Sources/App/routes.swift -------------------------------------------------------------------------------- /TEMPLATE_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/TEMPLATE_README.md -------------------------------------------------------------------------------- /Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/AppTests/AppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/Tests/AppTests/AppTests.swift -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/template/HEAD/manifest.yml --------------------------------------------------------------------------------