Experiment rewriting Intended Link in Gleam
Find a file
silentsilas b438928c35
Some checks are pending
test / test (push) Waiting to run
rename testing rules
2025-12-26 15:17:47 -05:00
.continue/rules rename testing rules 2025-12-26 15:17:47 -05:00
.github/workflows write tests for shared library, add birdie snapshots, update rules, update github workflow 2025-12-26 00:14:24 -05:00
client add continue dev agent rules, write tests for server 2025-12-25 23:49:34 -05:00
server fix default port 2025-12-26 01:11:37 -05:00
shared write tests for shared library, add birdie snapshots, update rules, update github workflow 2025-12-26 00:14:24 -05:00
.dockerignore add docker container for deployment, update readme 2025-12-26 00:53:00 -05:00
.gitignore add continue dev agent rules, write tests for server 2025-12-25 23:49:34 -05:00
.tool-versions init commit 2025-12-25 13:47:36 -05:00
Dockerfile add docker container for deployment, update readme 2025-12-26 00:53:00 -05:00
README.md fix default port 2025-12-26 01:11:37 -05:00

Fullstack Gleam

Docker

Hot code-reloading doesn't work with this method; mainly used for deployment.

podman build -f ./Dockerfile -t intended-gleam
podman run -p 8080:8080 intended-gleam

Manually

First build the frontend client:

cd client
gleam run -m lustre/dev build --minify --outdir=../server/priv/static`

Then run the server:

cd server
gleam run