https://github.com/negi524/nestjs-starter
NestJSのテンプレートリポジトリ
https://github.com/negi524/nestjs-starter
Last synced: 3 months ago
JSON representation
NestJSのテンプレートリポジトリ
- Host: GitHub
- URL: https://github.com/negi524/nestjs-starter
- Owner: negi524
- Created: 2025-03-14T00:07:18.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-22T01:07:43.000Z (3 months ago)
- Last Synced: 2025-03-22T01:34:55.159Z (3 months ago)
- Language: TypeScript
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nestjs-starter
## API
### Setup environment file
```bash
$ cp api/.env.sample api/.env
```### Setup prisma
```bash
$ docker compose exec api yarn prisma db pull
$ docker compose exec api yarn run format:prisma
$ docker compose exec api yarn prisma generate
```## DB
### Access database
```bash
$ mysql -h localhost -u root -p -D sample --protocol=tcp
Enter password:Password!mysql>
```