-
-
Notifications
You must be signed in to change notification settings - Fork 52
Closed
Labels
Description
Description
Manage environment variables for applications and services.
Requirements
- Environment variable storage
- Per-application environments
- Encrypted storage for secrets
- Environment templates
- Variable validation
- Integration with services
Acceptance Criteria
- Store environment variables
- Per-application isolation
- Encrypt sensitive values
- Environment templates
- Validation rules
- Auto-load on service start
- Unit tests included (>80% coverage)
- Documentation with env management
Example Usage
$ cortex env set myapp DATABASE_URL="postgres://..."
✓ Environment variable set
$ cortex env set myapp API_KEY="secret123" --encrypt
🔐 Variable encrypted and stored
$ cortex env list myapp
DATABASE_URL: postgres://localhost/mydb
API_KEY: [encrypted]
NODE_ENV: production
$ cortex env export myapp > myapp.envSkills: Python, environment management, encryption
Bounty: $25 upon merge
Priority: Medium