Skip to content

Commit be98fb4

Browse files
authored
Merge pull request #2 from ngocbd/copilot/fix-2aebb477-57dd-42e2-ab59-504c07da64ad
Copilot/fix 2aebb477 57dd 42e2 ab59 504c07da64ad
2 parents dc1bffc + 7ba81c8 commit be98fb4

28 files changed

Lines changed: 3854 additions & 11 deletions

.env.example

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Database Configuration
2+
DATABASE_URL=postgresql://postgres:password@localhost:5432/container_engine
3+
4+
# Redis Configuration
5+
REDIS_URL=redis://localhost:6379
6+
7+
# Server Configuration
8+
PORT=3000
9+
10+
# JWT Configuration
11+
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
12+
JWT_EXPIRES_IN=3600
13+
14+
# API Key Configuration
15+
API_KEY_PREFIX=ce_api_
16+
17+
# Kubernetes Configuration
18+
KUBERNETES_NAMESPACE=container-engine
19+
20+
# Domain Configuration
21+
DOMAIN_SUFFIX=container-engine.app
22+
23+
# Logging
24+
RUST_LOG=container_engine=debug,tower_http=debug

.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Rust
2+
/target/
3+
Cargo.lock
4+
5+
# IDE
6+
.vscode/
7+
.idea/
8+
*.swp
9+
*.swo
10+
11+
# OS
12+
.DS_Store
13+
Thumbs.db
14+
15+
# Environment
16+
.env
17+
.env.local
18+
19+
# Logs
20+
*.log
21+
22+
# Temporary files
23+
/tmp/
24+
/temp/
25+
26+
# Database
27+
*.db
28+
*.sqlite
29+
30+
# Redis
31+
dump.rdb
32+
33+
# Docker
34+
.dockerignore
35+
36+
# Kubernetes
37+
*.kubeconfig

0 commit comments

Comments
 (0)