TypeORM-readme-10.txt
· 682 B · Text
Brut
MyProject
├── src // place of your TypeScript code
│ ├── entity // place where your entities (database models) are stored
│ │ └── User.ts // sample entity
│ ├── migration // place where your migrations are stored
│ ├── data-source.ts // data source and all connection configuration
│ └── index.ts // start point of your application
├── .gitignore // standard gitignore file
├── package.json // node module dependencies
├── README.md // simple readme file
└── tsconfig.json // TypeScript compiler options
1 | MyProject |
2 | ├── src // place of your TypeScript code |
3 | │ ├── entity // place where your entities (database models) are stored |
4 | │ │ └── User.ts // sample entity |
5 | │ ├── migration // place where your migrations are stored |
6 | │ ├── data-source.ts // data source and all connection configuration |
7 | │ └── index.ts // start point of your application |
8 | ├── .gitignore // standard gitignore file |
9 | ├── package.json // node module dependencies |
10 | ├── README.md // simple readme file |
11 | └── tsconfig.json // TypeScript compiler options |