tangled
alpha
login
or
join now
kacaii.dev
/
blog
0
fork
atom
💻 My personal website
blog.kacaii.dev/
blog
gleam
lustre
0
fork
atom
overview
issues
pulls
pipelines
:recycle: bind to 8080
kacaii.dev
2 months ago
abd8c46a
b1875180
1/1
fmt.yml
success
6s
+24
-1
2 changed files
expand all
collapse all
unified
split
fly.toml
src
supervision_tree.gleam
+23
fly.toml
···
1
1
+
# fly.toml app configuration file generated for kacaii-blog on 2025-12-31T11:44:59-03:00
2
2
+
#
3
3
+
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
4
4
+
#
5
5
+
6
6
+
app = 'kacaii-blog'
7
7
+
primary_region = 'gru'
8
8
+
9
9
+
[build]
10
10
+
dockerfile = 'dockerfile'
11
11
+
12
12
+
[http_service]
13
13
+
internal_port = 8080
14
14
+
force_https = true
15
15
+
auto_stop_machines = 'stop'
16
16
+
auto_start_machines = true
17
17
+
min_machines_running = 0
18
18
+
processes = ['app']
19
19
+
20
20
+
[[vm]]
21
21
+
memory = '1gb'
22
22
+
cpus = 1
23
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
14
-
|> mist.port(8000)
14
14
+
|> mist.port(8080)
15
15
|> mist.supervised()
16
16
17
17
supervisor.new(supervisor.OneForOne)