💻 My personal website blog.kacaii.dev/
blog gleam lustre

:rocket: going back to fly

kacaii.dev 2f634443 18ea9bdc

verified
+28 -3
+3 -3
.tangled/workflows/deploy.yml
··· 8 8 9 9 dependencies: 10 10 nixpkgs: 11 - - nodejs 11 + - flyctl 12 12 - tailwindcss_4 13 13 14 14 github:NixOS/nixpkgs/nixpkgs-unstable: ··· 27 27 28 28 gleam run 29 29 30 - - name: deploy assets to cloudflare pages 30 + - name: deploy assets to fly.io 31 31 command: | 32 - npx --yes wrangler pages deploy --branch main --project-name kacaii-blog ./priv/dist/ 32 + fly deploy --remote-only
+3
Dockerfile
··· 1 + FROM nginx:alpine 2 + 3 + COPY priv/dist /usr/share/nginx/html
+22
fly.toml
··· 1 + # fly.toml app configuration file generated for kacaii-blog on 2026-02-01T19:40:33-03:00 2 + # 3 + # See https://fly.io/docs/reference/configuration/ for information about how to use this file. 4 + # 5 + 6 + app = 'kacaii-blog' 7 + primary_region = 'gru' 8 + 9 + [build] 10 + 11 + [http_service] 12 + internal_port = 80 13 + force_https = true 14 + auto_stop_machines = 'stop' 15 + auto_start_machines = true 16 + min_machines_running = 0 17 + processes = ['app'] 18 + 19 + [[vm]] 20 + memory = '1gb' 21 + cpus = 1 22 + memory_mb = 1024