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
:rocket: going back to fly
kacaii.dev
1 month ago
2f634443
18ea9bdc
verified
This commit was signed with the committer's
known signature
.
kacaii.dev
SSH Key Fingerprint:
SHA256:n9v7QGNWHCUv1x/483hCtPUvTsVabU5PzC5CSJMUNtI=
1/1
deploy.yml
success
1min 34s
+28
-3
3 changed files
expand all
collapse all
unified
split
.tangled
workflows
deploy.yml
Dockerfile
fly.toml
+3
-3
.tangled/workflows/deploy.yml
···
8
8
9
9
dependencies:
10
10
nixpkgs:
11
11
-
- nodejs
11
11
+
- flyctl
12
12
- tailwindcss_4
13
13
14
14
github:NixOS/nixpkgs/nixpkgs-unstable:
···
27
27
28
28
gleam run
29
29
30
30
-
- name: deploy assets to cloudflare pages
30
30
+
- name: deploy assets to fly.io
31
31
command: |
32
32
-
npx --yes wrangler pages deploy --branch main --project-name kacaii-blog ./priv/dist/
32
32
+
fly deploy --remote-only
+3
Dockerfile
···
1
1
+
FROM nginx:alpine
2
2
+
3
3
+
COPY priv/dist /usr/share/nginx/html
+22
fly.toml
···
1
1
+
# fly.toml app configuration file generated for kacaii-blog on 2026-02-01T19:40:33-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
+
11
11
+
[http_service]
12
12
+
internal_port = 80
13
13
+
force_https = true
14
14
+
auto_stop_machines = 'stop'
15
15
+
auto_start_machines = true
16
16
+
min_machines_running = 0
17
17
+
processes = ['app']
18
18
+
19
19
+
[[vm]]
20
20
+
memory = '1gb'
21
21
+
cpus = 1
22
22
+
memory_mb = 1024