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

:recycle: bind to 8080

+24 -1
+23
fly.toml
··· 1 + # fly.toml app configuration file generated for kacaii-blog on 2025-12-31T11:44:59-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 + dockerfile = 'dockerfile' 11 + 12 + [http_service] 13 + internal_port = 8080 14 + force_https = true 15 + auto_stop_machines = 'stop' 16 + auto_start_machines = true 17 + min_machines_running = 0 18 + processes = ['app'] 19 + 20 + [[vm]] 21 + memory = '1gb' 22 + cpus = 1 23 + memory_mb = 1024
+1 -1
src/supervision_tree.gleam
··· 11 11 wisp_mist.handler(handler, wisp.random_string(54)) 12 12 |> mist.new 13 13 |> mist.bind("0.0.0.0") 14 - |> mist.port(8000) 14 + |> mist.port(8080) 15 15 |> mist.supervised() 16 16 17 17 supervisor.new(supervisor.OneForOne)