Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

mode name
drwxr-xr-x .github/
drwxr-xr-x src/
drwxr-xr-x test/
-rw-r--r-- .gitignore
-rw-r--r-- .ignore
-rw-r--r-- README.md
-rw-r--r-- gleam.toml
-rw-r--r-- index.html
-rw-r--r-- manifest.toml
README

frontend

Package Version Hex Docs

gleam add frontend@1
import frontend

pub fn main() -> Nil {
  // TODO: An example of the project in use
}

Further documentation can be found at https://hexdocs.pm/frontend.

Development

gleam run   # Run the project
gleam test  # Run the tests

Build and Run (for developer)

on project root directory (..)

nix develop
nix build .#frontend
mkdir -p frontend/priv/static
cp result/graphviz.js frontend/priv/static/
cd frontend
python3 -m http.server 1234