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": [
20
],
"date_created": "2025-08-12",
"date_created": "2025-10-30",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 8080,
"documentation": null,
"config_path": "/opt/.env",
"documentation": "https://hexdocs.pm/livebook/readme.html",
"config_path": null,
"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.",
"install_methods": [
{
@ -33,7 +33,7 @@
},
"notes": [
{
"text": "Show Livebook password: `cat /opt/livebook.creds`",
"text": "Show initial Livebook password: `cat ~/livebook.creds`",
"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 PATH="\$ESCRIPTS_BIN:\$ERLANG_BIN:\$ELIXIR_BIN:\$PATH"
EOF
cat <<EOF >/opt/livebook/livebook.creds
Livebook-Credentials
Livebook Password: $LIVEBOOK_PASSWORD
EOF
{
echo "Livebook-Credentials"
echo "Livebook Password: $LIVEBOOK_PASSWORD"
} >>~/livebook.creds
msg_ok "Installed Erlang $ERLANG_VERSION and Elixir $ELIXIR_VERSION"
msg_info "Installing Livebook"