evnx 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- evnx-0.2.1/.envx/placeholders.json +24 -0
- evnx-0.2.1/.gitignore +10 -0
- evnx-0.2.1/ARCHITECTURE.md +866 -0
- evnx-0.2.1/CONTRIBUTING.md +629 -0
- evnx-0.2.1/Cargo.lock +2689 -0
- evnx-0.2.1/Cargo.toml +98 -0
- evnx-0.2.1/LICENSE +21 -0
- evnx-0.2.1/PKG-INFO +660 -0
- evnx-0.2.1/PYPI_PUBLISHING_CHECKLIST.md +220 -0
- evnx-0.2.1/README.md +629 -0
- evnx-0.2.1/backup-code/doctor-backup.rs +126 -0
- evnx-0.2.1/backup-code/doctor-backup2.rs +577 -0
- evnx-0.2.1/backup-code/doctor-backup3.rs +964 -0
- evnx-0.2.1/backup-code/init-backup-2.rs +230 -0
- evnx-0.2.1/backup-code/init-backup.rs +256 -0
- evnx-0.2.1/backup-code/sync-backup.rs +391 -0
- evnx-0.2.1/doctor_how_to.md +535 -0
- evnx-0.2.1/evnx-output.md +65 -0
- evnx-0.2.1/getting_started.md +1246 -0
- evnx-0.2.1/pypi-readme.md +204 -0
- evnx-0.2.1/pyproject.toml +78 -0
- evnx-0.2.1/reports/benchmarks.log +386 -0
- evnx-0.2.1/reports/coverage/cobertura.xml +1 -0
- evnx-0.2.1/reports/coverage/tarpaulin-report.html +794 -0
- evnx-0.2.1/reports/coverage.log +388 -0
- evnx-0.2.1/reports/integration-tests.log +102 -0
- evnx-0.2.1/reports/unit-tests.log +201 -0
- evnx-0.2.1/src/assets/schema.json +731 -0
- evnx-0.2.1/src/cli.rs +334 -0
- evnx-0.2.1/src/commands/add/blueprint.rs +147 -0
- evnx-0.2.1/src/commands/add/custom.rs +212 -0
- evnx-0.2.1/src/commands/add/framework.rs +128 -0
- evnx-0.2.1/src/commands/add/mod.rs +67 -0
- evnx-0.2.1/src/commands/add/service.rs +104 -0
- evnx-0.2.1/src/commands/add/shared.rs +220 -0
- evnx-0.2.1/src/commands/backup.rs +600 -0
- evnx-0.2.1/src/commands/convert.rs +246 -0
- evnx-0.2.1/src/commands/diff.rs +233 -0
- evnx-0.2.1/src/commands/doctor/mod.rs +26 -0
- evnx-0.2.1/src/commands/doctor/runner.rs +866 -0
- evnx-0.2.1/src/commands/doctor/types.rs +114 -0
- evnx-0.2.1/src/commands/init/architect.rs +180 -0
- evnx-0.2.1/src/commands/init/blank.rs +24 -0
- evnx-0.2.1/src/commands/init/blueprint.rs +91 -0
- evnx-0.2.1/src/commands/init/mod.rs +87 -0
- evnx-0.2.1/src/commands/init/shared.rs +55 -0
- evnx-0.2.1/src/commands/migrate.rs +876 -0
- evnx-0.2.1/src/commands/mod.rs +40 -0
- evnx-0.2.1/src/commands/restore.rs +315 -0
- evnx-0.2.1/src/commands/scan.rs +536 -0
- evnx-0.2.1/src/commands/sync.rs +1251 -0
- evnx-0.2.1/src/commands/template.rs +200 -0
- evnx-0.2.1/src/commands/validate.rs +389 -0
- evnx-0.2.1/src/core/config.rs +383 -0
- evnx-0.2.1/src/core/converter.rs +357 -0
- evnx-0.2.1/src/core/mod.rs +8 -0
- evnx-0.2.1/src/core/parser.rs +1028 -0
- evnx-0.2.1/src/formats/aws.rs +35 -0
- evnx-0.2.1/src/formats/azure.rs +72 -0
- evnx-0.2.1/src/formats/docker.rs +34 -0
- evnx-0.2.1/src/formats/doppler.rs +41 -0
- evnx-0.2.1/src/formats/gcp.rs +75 -0
- evnx-0.2.1/src/formats/github.rs +56 -0
- evnx-0.2.1/src/formats/heroku.rs +184 -0
- evnx-0.2.1/src/formats/json.rs +54 -0
- evnx-0.2.1/src/formats/kubernetes.rs +54 -0
- evnx-0.2.1/src/formats/mod.rs +33 -0
- evnx-0.2.1/src/formats/railway.rs +35 -0
- evnx-0.2.1/src/formats/shell.rs +37 -0
- evnx-0.2.1/src/formats/terraform.rs +36 -0
- evnx-0.2.1/src/formats/vercel.rs +42 -0
- evnx-0.2.1/src/formats/yaml.rs +35 -0
- evnx-0.2.1/src/lib.rs +46 -0
- evnx-0.2.1/src/main.rs +142 -0
- evnx-0.2.1/src/schema/formatter.rs +227 -0
- evnx-0.2.1/src/schema/loader.rs +149 -0
- evnx-0.2.1/src/schema/mod.rs +19 -0
- evnx-0.2.1/src/schema/models.rs +153 -0
- evnx-0.2.1/src/schema/query.rs +95 -0
- evnx-0.2.1/src/schema/resolver.rs +238 -0
- evnx-0.2.1/src/templates/mod.rs +4 -0
- evnx-0.2.1/src/utils/file_ops.rs +44 -0
- evnx-0.2.1/src/utils/fs.rs +225 -0
- evnx-0.2.1/src/utils/git.rs +165 -0
- evnx-0.2.1/src/utils/mod.rs +9 -0
- evnx-0.2.1/src/utils/patterns.rs +361 -0
- evnx-0.2.1/src/utils/selection.rs +0 -0
- evnx-0.2.1/src/utils/string.rs +115 -0
- evnx-0.2.1/src/utils/ui.rs +558 -0
- evnx-0.2.1/todo.md +15 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://evnx.dev/schemas/placeholders.v1.json",
|
|
3
|
+
"description": "Project-specific placeholder rules for environment variables",
|
|
4
|
+
"patterns": {
|
|
5
|
+
".*_API_KEY$": "sk_demo_XXXXXXXXXXXXXXXX",
|
|
6
|
+
".*_SECRET$": "demo_secret_placeholder",
|
|
7
|
+
".*_TOKEN$": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.demo",
|
|
8
|
+
"DATABASE_URL": "postgresql://demo:demo@localhost:5432/demo_db",
|
|
9
|
+
"REDIS_URL": "redis://localhost:6379/0",
|
|
10
|
+
".*_PORT$": "8080",
|
|
11
|
+
".*_HOST$": "localhost",
|
|
12
|
+
".*_URL$": "https://api.demo.example.com",
|
|
13
|
+
"DEBUG": "true",
|
|
14
|
+
"ENVIRONMENT": "development",
|
|
15
|
+
"LOG_LEVEL": "debug"
|
|
16
|
+
},
|
|
17
|
+
"default": "REPLACE_IN_PRODUCTION",
|
|
18
|
+
"allow_actual": ["APP_NAME", "APP_VERSION", "ENVIRONMENT", "LOG_LEVEL"],
|
|
19
|
+
"naming_convention": {
|
|
20
|
+
"style": "SCREAMING_SNAKE_CASE",
|
|
21
|
+
"allow_prefixes": ["MY_APP_", "SERVICE_"],
|
|
22
|
+
"warn_on_lowercase": true
|
|
23
|
+
}
|
|
24
|
+
}
|