first commit
This commit is contained in:
20
env.dev
Normal file
20
env.dev
Normal file
@@ -0,0 +1,20 @@
|
||||
# Development Environment
|
||||
NODE_ENV=development
|
||||
DATABASE_URL="postgresql://username:password@localhost:5432/nestjs_user_crud_dev?schema=public"
|
||||
JWT_SECRET="dev-jwt-secret-key-make-it-long-and-random"
|
||||
JWT_EXPIRES_IN="7d"
|
||||
API_PREFIX="api/v1"
|
||||
API_VERSION="1.0.0"
|
||||
THROTTLE_TTL=60
|
||||
THROTTLE_LIMIT=10
|
||||
CORS_ORIGIN="http://localhost:3000"
|
||||
|
||||
# AWS Configuration (for local development)
|
||||
AWS_REGION=us-east-1
|
||||
AWS_ACCESS_KEY_ID=your-access-key
|
||||
AWS_SECRET_ACCESS_KEY=your-secret-key
|
||||
|
||||
# VPC Configuration (if using RDS in VPC)
|
||||
VPC_SECURITY_GROUP_ID=sg-xxxxxxxxx
|
||||
VPC_SUBNET_ID_1=subnet-xxxxxxxxx
|
||||
VPC_SUBNET_ID_2=subnet-yyyyyyyyy
|
||||
Reference in New Issue
Block a user