Skip to content

Commit e76cae0

Browse files
committed
feat: Initialize template basic CRUD modules and design system decission
1 parent 25c1a2d commit e76cae0

43 files changed

Lines changed: 6455 additions & 1724 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# App
2+
PORT=3000
3+
API_PREFIX=api
4+
CORS_WHITELIST=http://localhost:3001,http://localhost:3000
5+
6+
# Database
7+
DB_HOST=localhost
8+
DB_PORT=5432
9+
DB_USER=postgres
10+
DB_PASSWORD=postgres
11+
DB_NAME=nothing_db
12+
13+
# JWT
14+
JWT_ACCESS_SECRET=change_me
15+
JWT_ACCESS_EXPIRES=15m
16+
JWT_REFRESH_SECRET=change_me_too
17+
JWT_REFRESH_EXPIRES=7d
18+
19+
# S3 / Minio
20+
S3_ENDPOINT=http://localhost:9000
21+
S3_ACCESS_KEY=minioadmin
22+
S3_SECRET_KEY=minioadmin
23+
S3_BUCKET=nothing-bucket
24+
S3_REGION=us-east-1

nest-cli.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
"collection": "@nestjs/schematics",
44
"sourceRoot": "src",
55
"compilerOptions": {
6-
"deleteOutDir": true
6+
"deleteOutDir": true,
7+
"assets": ["*.json"],
8+
"watchAssets": true
79
}
810
}

0 commit comments

Comments
 (0)