fun_with_flags
fun_with_flags copied to clipboard
Feature Flags/Toggles for Elixir
Update the *Application Start Behaviour* section in the `README` with the needed changes to the `releases` configuration when choosing **Option A**. Resolves #133
I run FunWithFlags with `runtime: false` in my `mix.exs` so I can start it manually in my supervision tree because I use `Phoenix.PubSub`. I have added `FunWithFlags.Supervisor` to my supervision...
Hi. I'm using this amazing library, with a custom backend, and I'm also using Ecto for entities (without a SQL backend either). The library, when compiling, complains that ``` warning:...
Check for `ecto_sql` instead of just `ecto` in the conditional compilation guards. It might solve https://github.com/tompave/fun_with_flags/issues/137.
Hi there! First off thanks for maintaining such a useful library for the community. I had been running `fun_with_flags` using a custom Postgrex adapter to handle notification updates. The goal...
Adds a compile-time config of `:ecto_primary_key_type` allowing use optional use of `Ecto.UUID`
Hey, first of all, thanks for release this great library for us all. I think I've found an issue when using Fun With Flags with a multi tenant app. I've...
Apparently ElasticCache needs a specific option set for tls to work. See https://hexdocs.pm/redix/Redix.html#module-ssl . In a release you cannot serialize the configuration needed. I have a patch that adds a...
When having a setup similar to what's described in the official Ecto guides on setting up multi tenancy with foreign keys, the queries originating from FunWithFlags can fail, as the...
Introduce the concept of entry point modules that a host application must implement in order to access the FunWithFlags API. This is adapted from [what Ecto does with its Repo](https://github.com/elixir-ecto/ecto/blob/v3.11.1/lib/ecto/repo.ex#L205)....