├── .dependency-cruiser.js ├── .editorconfig ├── .env.example ├── .gitattributes ├── .github └── workflows │ ├── codeql-analysis.yml │ └── release.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .releaserc ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── commitlint.config.cjs ├── cucumber.mjs ├── cucumber.setup.js ├── db ├── migrations │ └── 20240415225644_create_users_table.sql └── seeds │ └── 20240415231037_users.seed.sql ├── doc ├── dependency-graph.svg └── images │ ├── fastify-boilerplate.png │ └── fastify_logo.png ├── docker-compose.yml ├── eslint.config.mjs ├── package.json ├── renovate.json ├── src ├── config │ ├── env.ts │ └── index.ts ├── declarations.d.ts ├── index.ts ├── modules │ ├── index.ts │ ├── settings │ │ └── commands │ │ │ └── create-settings │ │ │ └── create-settings.event-handler.ts │ └── user │ │ ├── commands │ │ ├── create-user │ │ │ ├── create-user.graphql-schema.ts │ │ │ ├── create-user.handler.ts │ │ │ ├── create-user.resolver.ts │ │ │ ├── create-user.route.ts │ │ │ └── create-user.schema.ts │ │ └── delete-user │ │ │ ├── delete-user.handler.ts │ │ │ └── delete-user.route.ts │ │ ├── database │ │ ├── user.repository.port.ts │ │ └── user.repository.ts │ │ ├── domain │ │ ├── user.domain.spec.ts │ │ ├── user.domain.ts │ │ ├── user.errors.ts │ │ └── user.types.ts │ │ ├── dtos │ │ ├── user.graphql-schema.ts │ │ ├── user.paginated.response.dto.ts │ │ └── user.response.dto.ts │ │ ├── index.ts │ │ ├── queries │ │ └── find-users │ │ │ ├── find-users.graphql-schema.ts │ │ │ ├── find-users.handler.ts │ │ │ ├── find-users.resolver.ts │ │ │ ├── find-users.route.ts │ │ │ └── find-users.schema.ts │ │ └── user.mapper.ts ├── server │ ├── di │ │ ├── index.ts │ │ ├── util.spec.ts │ │ └── util.ts │ ├── index.ts │ └── plugins │ │ ├── cqrs.ts │ │ ├── error-handler.ts │ │ ├── gql.ts │ │ ├── request-context.ts │ │ └── swagger.ts └── shared │ ├── api │ ├── api-error.response.ts │ ├── id.response.dto.ts │ ├── paginated-query.request.dto.ts │ ├── paginated.response.base.ts │ └── response.base.ts │ ├── app │ └── app-request-context.ts │ ├── cqrs │ ├── action-creator.ts │ ├── bus.types.ts │ ├── command-bus.ts │ ├── event-bus.ts │ ├── index.ts │ └── middlewares.ts │ ├── db │ ├── postgres.ts │ ├── repository.port.ts │ └── sql-repository.base.ts │ ├── ddd │ ├── mapper.interface.ts │ └── query.base.ts │ ├── exceptions │ ├── exception-base.ts │ ├── exceptions.ts │ └── index.ts │ └── utils │ ├── guard.util.ts │ ├── index.ts │ └── validator.util.ts ├── tests ├── shared │ └── common.steps.ts ├── support │ ├── common-hooks.ts │ ├── custom-world.ts │ └── server.ts └── user │ ├── create-user │ ├── create-user.artillery.yaml │ └── create-user.feature │ ├── delete-user │ └── delete-user.feature │ └── user.steps.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.dependency-cruiser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/.dependency-cruiser.js -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 24.* 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/.releaserc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/commitlint.config.cjs -------------------------------------------------------------------------------- /cucumber.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/cucumber.mjs -------------------------------------------------------------------------------- /cucumber.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/cucumber.setup.js -------------------------------------------------------------------------------- /db/migrations/20240415225644_create_users_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/db/migrations/20240415225644_create_users_table.sql -------------------------------------------------------------------------------- /db/seeds/20240415231037_users.seed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/db/seeds/20240415231037_users.seed.sql -------------------------------------------------------------------------------- /doc/dependency-graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/doc/dependency-graph.svg -------------------------------------------------------------------------------- /doc/images/fastify-boilerplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/doc/images/fastify-boilerplate.png -------------------------------------------------------------------------------- /doc/images/fastify_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/doc/images/fastify_logo.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/renovate.json -------------------------------------------------------------------------------- /src/config/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/config/env.ts -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- 1 | export { default as env } from './env'; 2 | -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/index.ts -------------------------------------------------------------------------------- /src/modules/settings/commands/create-settings/create-settings.event-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/settings/commands/create-settings/create-settings.event-handler.ts -------------------------------------------------------------------------------- /src/modules/user/commands/create-user/create-user.graphql-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/commands/create-user/create-user.graphql-schema.ts -------------------------------------------------------------------------------- /src/modules/user/commands/create-user/create-user.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/commands/create-user/create-user.handler.ts -------------------------------------------------------------------------------- /src/modules/user/commands/create-user/create-user.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/commands/create-user/create-user.resolver.ts -------------------------------------------------------------------------------- /src/modules/user/commands/create-user/create-user.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/commands/create-user/create-user.route.ts -------------------------------------------------------------------------------- /src/modules/user/commands/create-user/create-user.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/commands/create-user/create-user.schema.ts -------------------------------------------------------------------------------- /src/modules/user/commands/delete-user/delete-user.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/commands/delete-user/delete-user.handler.ts -------------------------------------------------------------------------------- /src/modules/user/commands/delete-user/delete-user.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/commands/delete-user/delete-user.route.ts -------------------------------------------------------------------------------- /src/modules/user/database/user.repository.port.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/database/user.repository.port.ts -------------------------------------------------------------------------------- /src/modules/user/database/user.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/database/user.repository.ts -------------------------------------------------------------------------------- /src/modules/user/domain/user.domain.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/domain/user.domain.spec.ts -------------------------------------------------------------------------------- /src/modules/user/domain/user.domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/domain/user.domain.ts -------------------------------------------------------------------------------- /src/modules/user/domain/user.errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/domain/user.errors.ts -------------------------------------------------------------------------------- /src/modules/user/domain/user.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/domain/user.types.ts -------------------------------------------------------------------------------- /src/modules/user/dtos/user.graphql-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/dtos/user.graphql-schema.ts -------------------------------------------------------------------------------- /src/modules/user/dtos/user.paginated.response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/dtos/user.paginated.response.dto.ts -------------------------------------------------------------------------------- /src/modules/user/dtos/user.response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/dtos/user.response.dto.ts -------------------------------------------------------------------------------- /src/modules/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/index.ts -------------------------------------------------------------------------------- /src/modules/user/queries/find-users/find-users.graphql-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/queries/find-users/find-users.graphql-schema.ts -------------------------------------------------------------------------------- /src/modules/user/queries/find-users/find-users.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/queries/find-users/find-users.handler.ts -------------------------------------------------------------------------------- /src/modules/user/queries/find-users/find-users.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/queries/find-users/find-users.resolver.ts -------------------------------------------------------------------------------- /src/modules/user/queries/find-users/find-users.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/queries/find-users/find-users.route.ts -------------------------------------------------------------------------------- /src/modules/user/queries/find-users/find-users.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/queries/find-users/find-users.schema.ts -------------------------------------------------------------------------------- /src/modules/user/user.mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/modules/user/user.mapper.ts -------------------------------------------------------------------------------- /src/server/di/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/server/di/index.ts -------------------------------------------------------------------------------- /src/server/di/util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/server/di/util.spec.ts -------------------------------------------------------------------------------- /src/server/di/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/server/di/util.ts -------------------------------------------------------------------------------- /src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/server/index.ts -------------------------------------------------------------------------------- /src/server/plugins/cqrs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/server/plugins/cqrs.ts -------------------------------------------------------------------------------- /src/server/plugins/error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/server/plugins/error-handler.ts -------------------------------------------------------------------------------- /src/server/plugins/gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/server/plugins/gql.ts -------------------------------------------------------------------------------- /src/server/plugins/request-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/server/plugins/request-context.ts -------------------------------------------------------------------------------- /src/server/plugins/swagger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/server/plugins/swagger.ts -------------------------------------------------------------------------------- /src/shared/api/api-error.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/api/api-error.response.ts -------------------------------------------------------------------------------- /src/shared/api/id.response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/api/id.response.dto.ts -------------------------------------------------------------------------------- /src/shared/api/paginated-query.request.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/api/paginated-query.request.dto.ts -------------------------------------------------------------------------------- /src/shared/api/paginated.response.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/api/paginated.response.base.ts -------------------------------------------------------------------------------- /src/shared/api/response.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/api/response.base.ts -------------------------------------------------------------------------------- /src/shared/app/app-request-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/app/app-request-context.ts -------------------------------------------------------------------------------- /src/shared/cqrs/action-creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/cqrs/action-creator.ts -------------------------------------------------------------------------------- /src/shared/cqrs/bus.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/cqrs/bus.types.ts -------------------------------------------------------------------------------- /src/shared/cqrs/command-bus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/cqrs/command-bus.ts -------------------------------------------------------------------------------- /src/shared/cqrs/event-bus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/cqrs/event-bus.ts -------------------------------------------------------------------------------- /src/shared/cqrs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/cqrs/index.ts -------------------------------------------------------------------------------- /src/shared/cqrs/middlewares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/cqrs/middlewares.ts -------------------------------------------------------------------------------- /src/shared/db/postgres.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/db/postgres.ts -------------------------------------------------------------------------------- /src/shared/db/repository.port.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/db/repository.port.ts -------------------------------------------------------------------------------- /src/shared/db/sql-repository.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/db/sql-repository.base.ts -------------------------------------------------------------------------------- /src/shared/ddd/mapper.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/ddd/mapper.interface.ts -------------------------------------------------------------------------------- /src/shared/ddd/query.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/ddd/query.base.ts -------------------------------------------------------------------------------- /src/shared/exceptions/exception-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/exceptions/exception-base.ts -------------------------------------------------------------------------------- /src/shared/exceptions/exceptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/exceptions/exceptions.ts -------------------------------------------------------------------------------- /src/shared/exceptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/exceptions/index.ts -------------------------------------------------------------------------------- /src/shared/utils/guard.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/utils/guard.util.ts -------------------------------------------------------------------------------- /src/shared/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './guard.util'; 2 | -------------------------------------------------------------------------------- /src/shared/utils/validator.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/src/shared/utils/validator.util.ts -------------------------------------------------------------------------------- /tests/shared/common.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/tests/shared/common.steps.ts -------------------------------------------------------------------------------- /tests/support/common-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/tests/support/common-hooks.ts -------------------------------------------------------------------------------- /tests/support/custom-world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/tests/support/custom-world.ts -------------------------------------------------------------------------------- /tests/support/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/tests/support/server.ts -------------------------------------------------------------------------------- /tests/user/create-user/create-user.artillery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/tests/user/create-user/create-user.artillery.yaml -------------------------------------------------------------------------------- /tests/user/create-user/create-user.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/tests/user/create-user/create-user.feature -------------------------------------------------------------------------------- /tests/user/delete-user/delete-user.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/tests/user/delete-user/delete-user.feature -------------------------------------------------------------------------------- /tests/user/user.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/tests/user/user.steps.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoturi/fastify-boilerplate/HEAD/yarn.lock --------------------------------------------------------------------------------