hrms-api-probation/README.md

35 lines
452 B
Markdown
Raw Normal View History

2024-09-05 13:59:43 +07:00
# bma-ehr-probation
Envelopment
- Node 20.x
- Express
- Mysql
2024-09-05 15:18:09 +07:00
Install packages
2024-09-05 13:59:43 +07:00
```
2024-09-05 15:18:09 +07:00
npm install
```
Run project
```
npm run dev
2024-09-05 13:59:43 +07:00
```
Migration
2024-09-05 15:18:09 +07:00
1. สร้าง/แก้ไข entities
2024-09-05 13:59:43 +07:00
2. สร้างไฟล์ migration จาก entities และรัน update เข้า database
2024-09-05 15:18:09 +07:00
```
npm run migration:generate src/migration/xxx (xxx คือชื่อไฟล์ migrate)
```
3. Run migration
```
npm run migration:run
```