https://github.com/jaeyson/livebook-collection
Collections mostly on benchmarking simple algorithms
https://github.com/jaeyson/livebook-collection
elixir elixir-lang livebook
Last synced: 10 months ago
JSON representation
Collections mostly on benchmarking simple algorithms
- Host: GitHub
- URL: https://github.com/jaeyson/livebook-collection
- Owner: jaeyson
- License: mit
- Created: 2022-06-24T07:31:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-24T09:54:45.000Z (about 1 year ago)
- Last Synced: 2025-02-09T19:19:15.880Z (11 months ago)
- Topics: elixir, elixir-lang, livebook
- Language: JavaScript
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Livebook collection
Collections mostly on benchmarking simple algorithms
## Here are few ways to install Livebook
### Option A. Installing Livebook in your local machine
1. [livebook setup](https://github.com/livebook-dev/livebook#installation)
2. `livebook server`
```bash
mix do local.rebar --force, local.hex --force
# get the latest version
mix escript.install hex livebook
# or specific version
mix escript.install hex livebook 0.12.1
# Start the Livebook server
livebook server
# See all the configuration options
livebook server --help
```
### Option B. using Docker
Set the env variable in your terminal
```bash
export UID=$(id -u)
export GID=$(id -g)
```
Then
```bash
docker compose up -d && docker container logs --follow --tail 50 livebook
# if you want to check if the saved livebook files
# really synced in your local machine
docker container exec -it livebook bash
# then inside the running container
ls -lha
```