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.
Files changed (90) hide show
  1. evnx-0.2.1/.envx/placeholders.json +24 -0
  2. evnx-0.2.1/.gitignore +10 -0
  3. evnx-0.2.1/ARCHITECTURE.md +866 -0
  4. evnx-0.2.1/CONTRIBUTING.md +629 -0
  5. evnx-0.2.1/Cargo.lock +2689 -0
  6. evnx-0.2.1/Cargo.toml +98 -0
  7. evnx-0.2.1/LICENSE +21 -0
  8. evnx-0.2.1/PKG-INFO +660 -0
  9. evnx-0.2.1/PYPI_PUBLISHING_CHECKLIST.md +220 -0
  10. evnx-0.2.1/README.md +629 -0
  11. evnx-0.2.1/backup-code/doctor-backup.rs +126 -0
  12. evnx-0.2.1/backup-code/doctor-backup2.rs +577 -0
  13. evnx-0.2.1/backup-code/doctor-backup3.rs +964 -0
  14. evnx-0.2.1/backup-code/init-backup-2.rs +230 -0
  15. evnx-0.2.1/backup-code/init-backup.rs +256 -0
  16. evnx-0.2.1/backup-code/sync-backup.rs +391 -0
  17. evnx-0.2.1/doctor_how_to.md +535 -0
  18. evnx-0.2.1/evnx-output.md +65 -0
  19. evnx-0.2.1/getting_started.md +1246 -0
  20. evnx-0.2.1/pypi-readme.md +204 -0
  21. evnx-0.2.1/pyproject.toml +78 -0
  22. evnx-0.2.1/reports/benchmarks.log +386 -0
  23. evnx-0.2.1/reports/coverage/cobertura.xml +1 -0
  24. evnx-0.2.1/reports/coverage/tarpaulin-report.html +794 -0
  25. evnx-0.2.1/reports/coverage.log +388 -0
  26. evnx-0.2.1/reports/integration-tests.log +102 -0
  27. evnx-0.2.1/reports/unit-tests.log +201 -0
  28. evnx-0.2.1/src/assets/schema.json +731 -0
  29. evnx-0.2.1/src/cli.rs +334 -0
  30. evnx-0.2.1/src/commands/add/blueprint.rs +147 -0
  31. evnx-0.2.1/src/commands/add/custom.rs +212 -0
  32. evnx-0.2.1/src/commands/add/framework.rs +128 -0
  33. evnx-0.2.1/src/commands/add/mod.rs +67 -0
  34. evnx-0.2.1/src/commands/add/service.rs +104 -0
  35. evnx-0.2.1/src/commands/add/shared.rs +220 -0
  36. evnx-0.2.1/src/commands/backup.rs +600 -0
  37. evnx-0.2.1/src/commands/convert.rs +246 -0
  38. evnx-0.2.1/src/commands/diff.rs +233 -0
  39. evnx-0.2.1/src/commands/doctor/mod.rs +26 -0
  40. evnx-0.2.1/src/commands/doctor/runner.rs +866 -0
  41. evnx-0.2.1/src/commands/doctor/types.rs +114 -0
  42. evnx-0.2.1/src/commands/init/architect.rs +180 -0
  43. evnx-0.2.1/src/commands/init/blank.rs +24 -0
  44. evnx-0.2.1/src/commands/init/blueprint.rs +91 -0
  45. evnx-0.2.1/src/commands/init/mod.rs +87 -0
  46. evnx-0.2.1/src/commands/init/shared.rs +55 -0
  47. evnx-0.2.1/src/commands/migrate.rs +876 -0
  48. evnx-0.2.1/src/commands/mod.rs +40 -0
  49. evnx-0.2.1/src/commands/restore.rs +315 -0
  50. evnx-0.2.1/src/commands/scan.rs +536 -0
  51. evnx-0.2.1/src/commands/sync.rs +1251 -0
  52. evnx-0.2.1/src/commands/template.rs +200 -0
  53. evnx-0.2.1/src/commands/validate.rs +389 -0
  54. evnx-0.2.1/src/core/config.rs +383 -0
  55. evnx-0.2.1/src/core/converter.rs +357 -0
  56. evnx-0.2.1/src/core/mod.rs +8 -0
  57. evnx-0.2.1/src/core/parser.rs +1028 -0
  58. evnx-0.2.1/src/formats/aws.rs +35 -0
  59. evnx-0.2.1/src/formats/azure.rs +72 -0
  60. evnx-0.2.1/src/formats/docker.rs +34 -0
  61. evnx-0.2.1/src/formats/doppler.rs +41 -0
  62. evnx-0.2.1/src/formats/gcp.rs +75 -0
  63. evnx-0.2.1/src/formats/github.rs +56 -0
  64. evnx-0.2.1/src/formats/heroku.rs +184 -0
  65. evnx-0.2.1/src/formats/json.rs +54 -0
  66. evnx-0.2.1/src/formats/kubernetes.rs +54 -0
  67. evnx-0.2.1/src/formats/mod.rs +33 -0
  68. evnx-0.2.1/src/formats/railway.rs +35 -0
  69. evnx-0.2.1/src/formats/shell.rs +37 -0
  70. evnx-0.2.1/src/formats/terraform.rs +36 -0
  71. evnx-0.2.1/src/formats/vercel.rs +42 -0
  72. evnx-0.2.1/src/formats/yaml.rs +35 -0
  73. evnx-0.2.1/src/lib.rs +46 -0
  74. evnx-0.2.1/src/main.rs +142 -0
  75. evnx-0.2.1/src/schema/formatter.rs +227 -0
  76. evnx-0.2.1/src/schema/loader.rs +149 -0
  77. evnx-0.2.1/src/schema/mod.rs +19 -0
  78. evnx-0.2.1/src/schema/models.rs +153 -0
  79. evnx-0.2.1/src/schema/query.rs +95 -0
  80. evnx-0.2.1/src/schema/resolver.rs +238 -0
  81. evnx-0.2.1/src/templates/mod.rs +4 -0
  82. evnx-0.2.1/src/utils/file_ops.rs +44 -0
  83. evnx-0.2.1/src/utils/fs.rs +225 -0
  84. evnx-0.2.1/src/utils/git.rs +165 -0
  85. evnx-0.2.1/src/utils/mod.rs +9 -0
  86. evnx-0.2.1/src/utils/patterns.rs +361 -0
  87. evnx-0.2.1/src/utils/selection.rs +0 -0
  88. evnx-0.2.1/src/utils/string.rs +115 -0
  89. evnx-0.2.1/src/utils/ui.rs +558 -0
  90. 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
+ }
evnx-0.2.1/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /target
2
+
3
+ venv/
4
+
5
+
6
+
7
+ # Environment files
8
+ .env
9
+ .env.local
10
+ .env.*.local