This commit is contained in:
CanbiZ 2025-10-30 09:15:03 +01:00
parent ffe61d7590
commit 718559bcc9
2 changed files with 9 additions and 9 deletions

View File

@ -4,15 +4,15 @@
"categories": [ "categories": [
20 20
], ],
"date_created": "2025-08-12", "date_created": "2025-10-30",
"type": "ct", "type": "ct",
"updateable": true, "updateable": true,
"privileged": false, "privileged": false,
"interface_port": 8080, "interface_port": 8080,
"documentation": null, "documentation": "https://hexdocs.pm/livebook/readme.html",
"config_path": "/opt/.env", "config_path": null,
"website": "https://livebook.dev", "website": "https://livebook.dev",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/svg/livebook.svg", "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/livebook.webp",
"description": "Elixir Livebook is an interactive, web-based notebook platform for Elixir that combines code, documentation, and visualizations in a single document. Similar to Jupyter notebooks, it allows developers to write and execute Elixir code in real-time, making it ideal for data exploration, prototyping, learning, and collaborative development. Livebook features rich markdown support, built-in charting capabilities, and seamless integration with the Elixir ecosystem.", "description": "Elixir Livebook is an interactive, web-based notebook platform for Elixir that combines code, documentation, and visualizations in a single document. Similar to Jupyter notebooks, it allows developers to write and execute Elixir code in real-time, making it ideal for data exploration, prototyping, learning, and collaborative development. Livebook features rich markdown support, built-in charting capabilities, and seamless integration with the Elixir ecosystem.",
"install_methods": [ "install_methods": [
{ {
@ -33,7 +33,7 @@
}, },
"notes": [ "notes": [
{ {
"text": "Show Livebook password: `cat /opt/livebook.creds`", "text": "Show initial Livebook password: `cat ~/livebook.creds`",
"type": "info" "type": "info"
} }
] ]

View File

@ -67,10 +67,10 @@ export ERLANG_BIN="/opt/livebook/.elixir-install/installs/otp/\${ERLANG_VERSION}
export ELIXIR_BIN="/opt/livebook/.elixir-install/installs/elixir/\${ELIXIR_VERSION}/bin" export ELIXIR_BIN="/opt/livebook/.elixir-install/installs/elixir/\${ELIXIR_VERSION}/bin"
export PATH="\$ESCRIPTS_BIN:\$ERLANG_BIN:\$ELIXIR_BIN:\$PATH" export PATH="\$ESCRIPTS_BIN:\$ERLANG_BIN:\$ELIXIR_BIN:\$PATH"
EOF EOF
cat <<EOF >/opt/livebook/livebook.creds {
Livebook-Credentials echo "Livebook-Credentials"
Livebook Password: $LIVEBOOK_PASSWORD echo "Livebook Password: $LIVEBOOK_PASSWORD"
EOF } >>~/livebook.creds
msg_ok "Installed Erlang $ERLANG_VERSION and Elixir $ELIXIR_VERSION" msg_ok "Installed Erlang $ERLANG_VERSION and Elixir $ELIXIR_VERSION"
msg_info "Installing Livebook" msg_info "Installing Livebook"