├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.cjs ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── codeql │ └── codeql-config.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ └── codeql-analysis.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .npmignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .versionrc.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── cmd └── create-nodejs-ts │ └── index.js ├── commitlint.config.cjs ├── deployments └── dev │ └── docker-compose.yml ├── docs └── assets │ └── logo.png ├── jest.config.js ├── lint-staged.config.cjs ├── package.json ├── sample.env ├── src ├── config.ts ├── main.spec.ts └── main.ts ├── templates ├── .dockerignore.root ├── .gitignore.husky ├── .gitignore.root ├── README.md └── ci.yml ├── tsconfig.build.json ├── tsconfig.json └── tsconfig.test.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | scripts/ 3 | cmd/ 4 | tools/ 5 | 6 | *.d.ts 7 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.github/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.14.2 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.versionrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/.versionrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/README.md -------------------------------------------------------------------------------- /cmd/create-nodejs-ts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/cmd/create-nodejs-ts/index.js -------------------------------------------------------------------------------- /commitlint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/commitlint.config.cjs -------------------------------------------------------------------------------- /deployments/dev/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/deployments/dev/docker-compose.yml -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/jest.config.js -------------------------------------------------------------------------------- /lint-staged.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/lint-staged.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/package.json -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/sample.env -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- 1 | export const Config = { 2 | port: parseInt(process.env.PORT || '8080'), 3 | } 4 | -------------------------------------------------------------------------------- /src/main.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/src/main.spec.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/src/main.ts -------------------------------------------------------------------------------- /templates/.dockerignore.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/templates/.dockerignore.root -------------------------------------------------------------------------------- /templates/.gitignore.husky: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /templates/.gitignore.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/templates/.gitignore.root -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/templates/ci.yml -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorsalgado/create-nodejs-ts/HEAD/tsconfig.test.json --------------------------------------------------------------------------------