livebook/README.md

105 lines
5.3 KiB
Markdown
Raw Normal View History

2021-04-04 18:42:46 +08:00
<h1><img src="https://github.com/elixir-nx/livebook/raw/main/priv/static/logo-with-text.png" alt="Livebook" width="400"></h1>
2021-01-08 03:55:45 +08:00
2021-04-05 22:46:17 +08:00
Livebook is a tool for crafting interactive and collaborative code notebooks. It features:
2021-01-08 03:55:45 +08:00
2021-04-05 22:46:17 +08:00
* An interactive web application built with [Phoenix LiveView](https://github.com/phoenixframework/phoenix_live_view)
where users can create, fork, and run multiple notebooks.
* Each notebook is made of multiple sections: each section is made of Markdown and Elixir
2021-04-08 21:33:57 +08:00
cells. Code in Elixir cells can be evaluated on demand. Mathemtical formulas are also
supported via [KaTeX](https://katex.org/).
2021-01-08 03:55:45 +08:00
2021-04-08 21:33:57 +08:00
* Persistence: notebooks can be persisted to disk through the `.livemd` format, which is a
2021-04-05 22:46:17 +08:00
subset of Markdown. This means your notebooks can be saved for later, easily shared, and
2021-04-08 21:33:57 +08:00
they also play well with version control.
2021-01-08 03:55:45 +08:00
2021-04-05 22:46:17 +08:00
* Sequential evaluation: code cells run in a specific order, guaranteeing future users of
2021-04-09 04:27:08 +08:00
the same Livebook see the same output. If you re-execute a previous cell, following cells
2021-04-09 20:20:50 +08:00
are marked as stale to make it clear they depend on outdated notebok state.
2021-01-08 03:55:45 +08:00
2021-04-05 22:46:17 +08:00
* Custom runtimes: when executing Elixir code, you can either start a fresh Elixir process,
connect to an existing node, or run it inside an existing Elixir project, with access to
all of its modules and dependencies. This means Livebook can be a great tool to provide
live documentation for existing projects.
2021-01-08 03:55:45 +08:00
2021-04-09 04:40:21 +08:00
* Explicit dependencies: if your notebook has dependencies, they are explicitly listed and
installed with the help of the `Mix.install/2` command in Elixir v1.12+.
2021-04-05 22:46:17 +08:00
* Collaborative features allow multiple users to work on the same notebook at once.
Collaboration works either in single-node or multi-node deployments - without a
need for additional tooling.
Here is a peek at the "Welcome to Livebook" introductory notebook:
![Screenshot](https://user-images.githubusercontent.com/9582/113567534-166f4980-960f-11eb-98df-c0b8b81f8a27.png)
Note the current release provides only the initial step of our Livebook vision. Our plan
is to continue focusing on visual, collaborative, and interactive features in the upcoming
releases.
## Usage
For now, the best way to run Livebook is by cloning it and running it locally:
$ git clone https://github.com/elixir-nx/livebook.git
$ cd livebook
$ mix deps.get --only prod
$ MIX_ENV=prod mix phx.server
You will need [Elixir v1.11](https://elixir-lang.org/install.html) or later.
2021-04-08 21:33:57 +08:00
We will work on other distribution modes (escripts, Docker images, etc) once
we start distributing official releases.
2021-04-05 22:46:17 +08:00
## License
Copyright (C) 2021 Dashbit
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
#### Rationale
2021-04-13 14:32:10 +08:00
*Note: this section explains our rationale behind choosing AGPL v3 and
does not give you any rights beyond those listed in the LICENSE file.*
2021-04-05 22:46:17 +08:00
Livebook's LICENSE does not impact your own notebooks. All of the notebooks
you write belong to you and under the license of your choice (if any).
However, if you make changes to Livebook source code, your modifications
2021-04-13 14:32:10 +08:00
have to be available to those using your version of Livebook. For example,
2021-04-05 22:46:17 +08:00
if you change Livebook to run it exclusively inside your own company,
your changes only have to be available within the company itself. However,
2021-04-13 14:32:10 +08:00
if you modify Livebook in order to build your own service or your own copy
of it, then you must link back to Livebook and make the modified source
code available to the community using the same license as Livebook.
2021-04-05 22:46:17 +08:00
At the end of the day, it is not different from using a database that is AGPL
licensed: your data, the queries you write, and the applications that talk to
the DB are all distinct and separate from the database itself. However, if you
want to add new functionality to the database and charge a fee for others to
use it, then you need to make your derived source code public too.
2021-04-13 14:32:10 +08:00
Dashbit has released many open source projects throughout the years under the
Apache 2 License. However, for Livebook, we chose to use AGPL v3 since Livebook
is an *application* and not a library. This means developers will be running
it directly instead of bringing it as a dependency into their own projects and
we would like improvements done directly to the application to be available
to the Livebook community at large, whenever possible, as Livebook itself is.
Other projects that use AGPL are [RStudio](https://www.rstudio.com/) and
[ScyllaDB](https://www.scylladb.com/).
Further reading for those interested:
2021-04-05 22:46:17 +08:00
* [GNU Affero General Public License](http://www.gnu.org/licenses/agpl-3.0.html)
* [Understanding the AGPL: The Most Misunderstood License](https://medium.com/swlh/understanding-the-agpl-the-most-misunderstood-license-86fd1fe91275)