├── .env-example ├── .gitignore ├── .sequelizerc ├── README.md ├── package.json ├── src ├── db │ ├── config.json │ ├── migrations │ │ └── .keep │ ├── models │ │ ├── index.ts │ │ └── product.ts │ └── seeders │ │ └── .keep └── types.d.ts └── tsconfig.json /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichalZalecki/sequelize-with-typescript-example/HEAD/.env-example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichalZalecki/sequelize-with-typescript-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.sequelizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichalZalecki/sequelize-with-typescript-example/HEAD/.sequelizerc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichalZalecki/sequelize-with-typescript-example/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichalZalecki/sequelize-with-typescript-example/HEAD/package.json -------------------------------------------------------------------------------- /src/db/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichalZalecki/sequelize-with-typescript-example/HEAD/src/db/config.json -------------------------------------------------------------------------------- /src/db/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/db/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichalZalecki/sequelize-with-typescript-example/HEAD/src/db/models/index.ts -------------------------------------------------------------------------------- /src/db/models/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichalZalecki/sequelize-with-typescript-example/HEAD/src/db/models/product.ts -------------------------------------------------------------------------------- /src/db/seeders/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichalZalecki/sequelize-with-typescript-example/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichalZalecki/sequelize-with-typescript-example/HEAD/tsconfig.json --------------------------------------------------------------------------------