mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-12-28 18:50:48 +08:00
e9766ed7a5
* Add token authentication * Restructure CLI * Allow port configuration * Further refactoring * Make sure livebook node starts with unique name * Improve startup error handling * Further refactoring * Add authentication tests * Add authentication view for entering the token * Fix auth tests * Always use random Livebook name for distribution * Don't enable ANSI on Windows * Define CLI Task behaviour and move generic logic to the main module * Generalize convertion from cli arguments to configuration * Randomly generate secret key base * Update test/livebook_web/plugs/auth_plug_test.exs Co-authored-by: José Valim <jose.valim@dashbit.co> * Override app config in persistent manner * Update lib/litebook_cli.ex Co-authored-by: José Valim <jose.valim@dashbit.co> * Move auth error to ErrorView * Unify node name configuration and allow it via CLI * Set all applications configs at once * Move token generation to application.ex to work outside CLI * Clean up overriding configuration * Store auth token in separate cookies * Update lib/livebook_cli/server.ex Co-authored-by: José Valim <jose.valim@dashbit.co> * Update lib/livebook_web/endpoint.ex Co-authored-by: José Valim <jose.valim@dashbit.co> * Update lib/livebook_web/plugs/auth_plug.ex Co-authored-by: José Valim <jose.valim@dashbit.co> Co-authored-by: José Valim <jose.valim@dashbit.co>
14 lines
528 B
Elixir
14 lines
528 B
Elixir
import Config
|
|
|
|
# Configure the type of names used for distribution and the node name.
|
|
# By default a random short name is used.
|
|
# config :livebook, :node, {:shortnames, "livebook"}
|
|
# config :livebook, :node, {:longnames, "livebook@127.0.0.1"}
|
|
|
|
if config_env() == :prod do
|
|
# We don't need persistent session, so it's fine to just
|
|
# generate a new key everytime the app starts
|
|
secret_key_base = :crypto.strong_rand_bytes(48) |> Base.encode64()
|
|
|
|
config :livebook, LivebookWeb.Endpoint, secret_key_base: secret_key_base
|
|
end
|