-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathenv.development
More file actions
41 lines (32 loc) · 880 Bytes
/
env.development
File metadata and controls
41 lines (32 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# RedisGate Development Environment Configuration
# This file contains all configuration variables for development environment
# PostgreSQL Configuration
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_USER=redisgate_dev
POSTGRES_PASSWORD=redisgate_dev_password
POSTGRES_DB=redisgate_dev
POSTGRES_MAX_CONNECTIONS=20
# Application Configuration
APP_HOST=0.0.0.0
APP_PORT=8080
APP_LOG_LEVEL=debug
APP_ENVIRONMENT=development
# Kubernetes Configuration
K8S_NAMESPACE=redisgate-dev
K8S_DOMAIN=redisgate.local
# JWT Configuration
JWT_SECRET=development_jwt_secret_key_change_in_production
JWT_EXPIRATION=24h
# Minikube Configuration
MINIKUBE_DRIVER=docker
MINIKUBE_MEMORY=4096
MINIKUBE_CPUS=2
MINIKUBE_KUBERNETES_VERSION=v1.28.0
# Docker Configuration
DOCKER_REGISTRY=localhost:5000
DOCKER_TAG=latest
# Development Tools
RUST_LOG=debug
RUST_BACKTRACE=1
CARGO_INCREMENTAL=1