{"id":20464340,"url":"https://github.com/osl-incubator/envers","last_synced_at":"2026-01-20T21:33:00.451Z","repository":{"id":208660596,"uuid":"722165735","full_name":"osl-incubator/envers","owner":"osl-incubator","description":null,"archived":false,"fork":false,"pushed_at":"2024-09-28T03:21:52.000Z","size":1459,"stargazers_count":1,"open_issues_count":7,"forks_count":4,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-09-24T22:37:40.210Z","etag":null,"topics":["early-development","environment-configuration","environment-variables","help-wanted"],"latest_commit_sha":null,"homepage":"https://osl-incubator.github.io/envers/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/osl-incubator.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/contributing.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-22T15:17:59.000Z","updated_at":"2025-08-13T06:13:58.000Z","dependencies_parsed_at":"2025-01-16T01:12:29.204Z","dependency_job_id":"74eebca0-07d0-4628-aa5a-87380f133abd","html_url":"https://github.com/osl-incubator/envers","commit_stats":null,"previous_names":["osl-incubator/envers"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/osl-incubator/envers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osl-incubator%2Fenvers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osl-incubator%2Fenvers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osl-incubator%2Fenvers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osl-incubator%2Fenvers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/osl-incubator","download_url":"https://codeload.github.com/osl-incubator/envers/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osl-incubator%2Fenvers/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28614597,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T18:56:40.769Z","status":"ssl_error","status_checked_at":"2026-01-20T18:54:26.653Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["early-development","environment-configuration","environment-variables","help-wanted"],"created_at":"2024-11-15T13:14:43.843Z","updated_at":"2026-01-20T21:33:00.432Z","avatar_url":"https://github.com/osl-incubator.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Envers\n\n`Envers` is a command-line tool (CLI) designed to manage and version environment\nvariables for different deployment stages such as staging, development, and\nproduction. It provides a secure and organized way to handle\nenvironment-specific configurations.\n\n## Features\n\n- Encrypt environment variables: Creates encrypted files that store environment\n  variables that can be safely stored in a git repository\n- Group-Based Configurations: Allows defining variables for different\n  groups/profiles like prod, dev, etc.\n- File-Based Variable Definitions: Supports multiple environment files (.env)\n  with specific variables for each file.\n- CLI-Driven: Provide CLI commands that helps to create drafts for environment\n  variables and deploy it to encrypted files\n- Spec Management: Each release has a defined spec that applies to all\n  groups/profiles within that release.\n- Environment File Generation: Enables generating .env files for specific\n  versions and groups/profiles using commands.\n\n## Installation\n\nTBD\n\n## Usage\n\nBelow are the initial subcommands for `envers`:\n\n- `envers init`: Initialize the `envers` environment.\n- `envers deploy \u003cspec version number\u003e`: Deploy a specific version from the spec\n  file.\n- `envers draft \u003cspec version number\u003e`: Create a new version draft in the spec\n  file. Some variants of this command:\n  - `envers draft \u003cspec version number\u003e --from \u003cprevious spec version number\u003e`\n  - `envers draft \u003cspec version number\u003e --from-env .env`\n- `envers profile-set --profile \u003cprofile_name\u003e --spec \u003cversion_number\u003e`: Add new\n  content.\n- `envers profile load --profile prod --spec \u003cspec version\u003e`: Load a specific\n  environment profile to files\n\n`envers init` creates the spec file at `.envers/.specs.yaml`.\n\n`envers deploy` creates the file `.envers/.data.lock`. This file is\nauto-generated by `envers` command, and it is encrypted.\n\nThe initial version of `./.envers/.specs.yaml` would look like this:\n\n```yaml\nversion: 0.1 # the envers spec version\nreleases:\n```\n\nAs you can see, it doesn't have too much information. If you want to draft a new\nversion, you can run the following command:\n\n```bash\n$ envers draft 1.0\n```\n\nAfter this command, the `.envers/specs.yaml` file should look like this:\n\n```yaml\nversion: 0.1 # the spec version\nreleases:\n  # placeholder: the version for the environment variables.\n  #   if the status is draft, feel free to change the version number\n  1.0:\n    # status attribute is handled by command line, don't change it manually\n    status: draft # options are: draft, cancelled, deployed\n    # placeholder: update help with the real help text\n    help:\n    # placeholder: a list of available profiles (groups) for this version.\n    #   at least one profile is required for the deploying\n    profiles:\n      - base\n    # define the spec for that version, this spec should be used for all\n    # profiles (groups) inside this version\n    spec:\n      # define the env file or any other kind of environment file to be used,\n      # for now it just has support for .env files\n      files:\n        # placeholder: change `.env` to the correct dotenv file relative path\n        .env:\n          type: dotenv # default\n          # `vars` is a dictionary for the environment variables\n          # this defines the variables and some metadata, but not the real\n          # value, because it is just the definition of the spec.\n          vars:\n            # placeholder: ENV is just a variable name, replace it by your real\n            # environment variable\n            ENV:\n              type: string # options are: string, int, bool, path\n              default: dev # in the case that the variable is not defined\n```\n\nNow, you can deploy your first version of environment variables:\n\n```bash\n$ envers deploy 1.0\n```\n\nWhen a version is deployed, it creates automatically all the new spec into the\n`.envers/data.lock`.\n\nAll the variables for the each profile and spec version is stored into\n`.envers/data.lock`, and this file shouldn't be changed for any reason.\n\nFinally, we can create the environment variables for the `base` profile:\n\n```bash\n$ envers profile set --profile base --spec 1.0\n```\n\n`envers` will ask you via prompt the value for each variable defined in the spec\nfor version `1.0`.\n\n## Roadmap\n\n- Detailed spec and content management functionalities.\n- Enhancements in versioning and group management.\n- Integration with makim and sugar.\n\n## Contributing\n\nhttps://osl-incubator.github.io/envers\n\n## License\n\nBSD-Clause 3\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fosl-incubator%2Fenvers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fosl-incubator%2Fenvers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fosl-incubator%2Fenvers/lists"}