├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── ormconfig.json ├── package.json ├── prettier.config.js ├── src ├── app.ts ├── database │ ├── index.ts │ └── migrations │ │ ├── 1590782013559-createClass.ts │ │ └── 1590782338777-AddFieldExpClass.ts ├── models │ └── Class.ts ├── repositories │ └── ClassRepository.ts ├── routes │ ├── class.routes.ts │ └── index.ts └── server.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.js 2 | node_modules 3 | dist 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/LICENSE -------------------------------------------------------------------------------- /ormconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/ormconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/src/database/index.ts -------------------------------------------------------------------------------- /src/database/migrations/1590782013559-createClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/src/database/migrations/1590782013559-createClass.ts -------------------------------------------------------------------------------- /src/database/migrations/1590782338777-AddFieldExpClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/src/database/migrations/1590782338777-AddFieldExpClass.ts -------------------------------------------------------------------------------- /src/models/Class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/src/models/Class.ts -------------------------------------------------------------------------------- /src/repositories/ClassRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/src/repositories/ClassRepository.ts -------------------------------------------------------------------------------- /src/routes/class.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/src/routes/class.routes.ts -------------------------------------------------------------------------------- /src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/src/routes/index.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/src/server.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youtube-codes/Project-template-TS/HEAD/tsconfig.json --------------------------------------------------------------------------------