mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-09-07 05:24:40 +08:00
Fix feature flags
This commit is contained in:
parent
39a53e5df5
commit
d4aa41f5fd
4 changed files with 5 additions and 4 deletions
|
@ -28,7 +28,7 @@ config :livebook,
|
||||||
app_service_name: nil,
|
app_service_name: nil,
|
||||||
app_service_url: nil,
|
app_service_url: nil,
|
||||||
authentication_mode: :token,
|
authentication_mode: :token,
|
||||||
feature_flags: [deployment_groups: true],
|
feature_flags: [],
|
||||||
force_ssl_host: nil,
|
force_ssl_host: nil,
|
||||||
learn_notebooks: [],
|
learn_notebooks: [],
|
||||||
plugs: [],
|
plugs: [],
|
||||||
|
|
|
@ -74,3 +74,5 @@ config :phoenix, :plug_init_mode, :runtime
|
||||||
config :livebook, :authentication_mode, :disabled
|
config :livebook, :authentication_mode, :disabled
|
||||||
|
|
||||||
config :livebook, :data_path, Path.expand("tmp/livebook_data/dev")
|
config :livebook, :data_path, Path.expand("tmp/livebook_data/dev")
|
||||||
|
|
||||||
|
config :livebook, :feature_flags, deployment_groups: true
|
||||||
|
|
|
@ -12,9 +12,6 @@ config :livebook, LivebookWeb.Endpoint,
|
||||||
|
|
||||||
config :livebook, :iframe_port, 8081
|
config :livebook, :iframe_port, 8081
|
||||||
|
|
||||||
# Disable all feature flags in production
|
|
||||||
config :livebook, :feature_flags, []
|
|
||||||
|
|
||||||
# Set log level to warning by default to reduce output
|
# Set log level to warning by default to reduce output
|
||||||
config :logger, level: :warning
|
config :logger, level: :warning
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,8 @@ end
|
||||||
|
|
||||||
config :livebook, :data_path, data_path
|
config :livebook, :data_path, data_path
|
||||||
|
|
||||||
|
config :livebook, :feature_flags, deployment_groups: true
|
||||||
|
|
||||||
# Use longnames when running tests in CI, so that no host resolution is required,
|
# Use longnames when running tests in CI, so that no host resolution is required,
|
||||||
# see https://github.com/livebook-dev/livebook/pull/173#issuecomment-819468549
|
# see https://github.com/livebook-dev/livebook/pull/173#issuecomment-819468549
|
||||||
if System.get_env("CI") == "true" do
|
if System.get_env("CI") == "true" do
|
||||||
|
|
Loading…
Add table
Reference in a new issue