envilder 0.7.0 β 0.7.3
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.
- package/LICENSE +21 -21
- package/README.md +259 -249
- package/ROADMAP.md +40 -67
- package/docs/CHANGELOG.md +345 -345
- package/docs/SECURITY.md +167 -167
- package/lib/apps/cli/Index.js +0 -0
- package/lib/envilder/infrastructure/variableStore/FileVariableStore.js +1 -1
- package/lib/envilder/infrastructure/variableStore/FileVariableStore.js.map +1 -1
- package/package.json +36 -33
package/ROADMAP.md
CHANGED
|
@@ -1,67 +1,40 @@
|
|
|
1
|
-
# π£οΈ Envilder Roadmap
|
|
2
|
-
|
|
3
|
-
Envilder aims to be the simplest, most reliable way to generate `.env` files from AWS SSM Parameter Store
|
|
4
|
-
β for both local development and CI/CD pipelines.
|
|
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
|
-
- [ ] π Support hierarchical `param-map.json` per environment
|
|
42
|
-
- [ ] 𧬠Plugin system for custom resolvers (e.g., secrets from other providers)
|
|
43
|
-
|
|
44
|
-
---
|
|
45
|
-
|
|
46
|
-
## π Contribute or suggest ideas
|
|
47
|
-
|
|
48
|
-
If youβve faced similar problems or want to help improve this tool, feel free to open an issue, submit a PR
|
|
49
|
-
or reach out.
|
|
50
|
-
Every bit of feedback helps make this tool better for the community.
|
|
51
|
-
|
|
52
|
-
---
|
|
53
|
-
|
|
54
|
-
## Feature Status
|
|
55
|
-
|
|
56
|
-
| Feature | Status | Notes |
|
|
57
|
-
|--------------------------------|---------------|-------|
|
|
58
|
-
| Push mode (`--push`) | β
Implemented | |
|
|
59
|
-
| Mapping-based secret resolution| β
Implemented | |
|
|
60
|
-
| .env file generation | β
Implemented | |
|
|
61
|
-
| AWS profile support | β
Implemented | |
|
|
62
|
-
| GitHub Action | β
Implemented | Available as composite action |
|
|
63
|
-
| Auto-discovery mode (`--auto`) | β Not implemented | Planned |
|
|
64
|
-
| Check/sync mode (`--check`) | β Not implemented | Planned |
|
|
65
|
-
| Webhook/Slack notification | β Not implemented | Planned |
|
|
66
|
-
| Hierarchical mapping | β Not implemented | Only flat JSON mapping supported |
|
|
67
|
-
| Plugin system | β Not implemented | Only AWS SSM supported |
|
|
1
|
+
# π£οΈ Envilder Roadmap
|
|
2
|
+
|
|
3
|
+
Envilder aims to be the simplest, most reliable way to generate `.env` files from AWS SSM Parameter Store
|
|
4
|
+
β for both local development and CI/CD pipelines.
|
|
5
|
+
|
|
6
|
+
> **Note:** This roadmap contains ideas and potential features based on initial vision and community feedback.
|
|
7
|
+
> Not all features are guaranteed to be implemented. Priorities may change based on user needs, feedback,
|
|
8
|
+
> and real-world usage patterns. Your input mattersβfeel free to share your thoughts and suggestions!
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## Feature Status & Roadmap
|
|
13
|
+
|
|
14
|
+
| Feature | Status | Priority | Notes |
|
|
15
|
+
|---------|--------|----------|-------|
|
|
16
|
+
| **Mapping-based resolution** | β
Implemented | - | Core functionality |
|
|
17
|
+
| **`.env` file generation** | β
Implemented | - | Core functionality |
|
|
18
|
+
| **AWS profile support** | β
Implemented | - | `--profile` flag |
|
|
19
|
+
| **Push mode** (`--push`) | β
Implemented | - | [Guide](./docs/push-command.md) |
|
|
20
|
+
| **GitHub Action** | β
Implemented | - | [Documentation](./github-action/README.md) |
|
|
21
|
+
| **Onboarding documentation** | β
Implemented | - | [Setup guide](./docs/requirements-installation.md) |
|
|
22
|
+
| **Plugin system / Multi-backend** | β Planned | π₯ Next | Starting with Azure Key Vault support |
|
|
23
|
+
| **Check/sync mode** (`--check`) | β Planned | High | Validate SSM vs `.env`, fail CI if out-of-sync |
|
|
24
|
+
| **Auto-discovery mode** (`--auto`) | β Planned | Medium | Fetch all parameters with a given prefix |
|
|
25
|
+
| **Webhook/Slack notifications** | β Planned | Low | Notify on secret sync for audit/logging |
|
|
26
|
+
| **Hierarchical mapping** | β Future | Low | Per-environment `param-map.json` |
|
|
27
|
+
| **Web-based demo** | β Future | Low | Interactive mapping tester |
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## π Contribute or Suggest Ideas
|
|
32
|
+
|
|
33
|
+
If you've faced similar problems or want to help improve this tool, feel free to:
|
|
34
|
+
|
|
35
|
+
- π [Open an issue](https://github.com/macalbert/envilder/issues/new)
|
|
36
|
+
- π‘ Share feature ideas and use cases
|
|
37
|
+
- π§ Submit a Pull Request
|
|
38
|
+
- π¬ Provide feedback on planned features
|
|
39
|
+
|
|
40
|
+
Every bit of feedback helps make this tool better for the community!
|