Files
pp-tcms/backend/README.md
Takeshi Kimata 45f64df1f9 set up sqlite
2024-02-04 18:38:48 +09:00

39 lines
349 B
Markdown

# Test Case Manager Backend
## Technologies
- Node.js
- Express
- SQLite
## Install dependencies
```bash
npm install
```
## Set up database
```bash
npm run migrate
```
## Run the development server
```bash
npm run start
```
## Database operation command
### drop table
```bash
npm run drop
```
### add seed data
```bash
npm run seed
```