vapor icon indicating copy to clipboard operation
vapor copied to clipboard

Runtime configuration system for Elixir

Results 19 vapor issues
Sort by recently updated
recently updated
newest added

Bumps [credo](https://github.com/rrrene/credo) from 1.6.4 to 1.6.6. Changelog Sourced from credo's changelog. 1.6.6 Fix error when analysing single-line modules Fix false positive for Credo.Check.Readability.SpaceAroundOperators Fix false positive for Credo.Check.Warning.UnusedStringOperation Fix bug...

dependencies

Bumps [dialyxir](https://github.com/jeremyjh/dialyxir) from 1.1.0 to 1.2.0. Changelog Sourced from dialyxir's changelog. Unreleased changes post [1.2.0] [1.2.0] - 2022-07-20 Added "github" formatter. Commits 04f1bda Bump version d38e42f feat: Adds a github...

dependencies

* Fix so the lack of an environment variable subsequent in a pipeline won't cause it to wipe previously established values * Fix so that the File provider now honors...

Bumps [yaml_elixir](https://github.com/KamilLelonek/yaml-elixir) from 2.8.0 to 2.9.0. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=yaml_elixir&package-manager=hex&previous-version=2.8.0&new-version=2.9.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [ex_doc](https://github.com/elixir-lang/ex_doc) from 0.28.3 to 0.28.4. Changelog Sourced from ex_doc's changelog. v0.28.4 (2022-04-28) Enhancements Add a toast when changing theme via keyboard Automatically convert .livemd links to .html ones Show...

dependencies

I wanted to have multiple providers for a specific config sectionin a `Planner`: ``` config :endpoint, [ file("config.toml", [ {:port, ["something", "port"]} ]), env([ {:something_else, "SOMETHING_ELSE"} ]) ] ``` I...

Elixir 1.12.3 Phoenix 1.5.12 Vapor 0.10.0 I haven't dug into why this error is now happening but when configuring like the example here: ``` defmodule VaporExample.Config do use Vapor.Planner dotenv()...

Hi, thanks so much for Vapor and everything you do for the Elixir community. In my app I was trying to define the configuration in a file but be able...

I am currently using Vapor in conjunction with GCP Secret Management and ENVKEY secret management. The secret management pipeline for these tools return JSON dumps of the secret payload on...

When a setting is exported from a .env file empty strings will appear in environment like this: .env `SOME_SETTING=` Running: `export $(xargs < config/environments/.env)` Will set in environment: `SOME_SETTING=''` Now...