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

:boom: pause project for now

kacaii.dev 5465bd9d 2d29d8ce

verified
-54
-32
.tangled/workflows/deploy.yml
··· 1 - when: 2 - - event: ["push"] 3 - branch: ["main"] 4 - 5 - - event: ["manual"] 6 - 7 - engine: nixery 8 - 9 - dependencies: 10 - nixpkgs: 11 - - flyctl 12 - - tailwindcss_4 13 - 14 - github:NixOS/nixpkgs/nixpkgs-unstable: 15 - - gleam 16 - - beamMinimal28Packages.erlang 17 - - beamMinimal28Packages.rebar3 18 - 19 - steps: 20 - - name: build css 21 - command: | 22 - tailwindcss -i priv/input.css -o priv/dist/output.css 23 - 24 - - name: build html 25 - command: | 26 - export PATH="$HOME/.nix-profile/bin:$PATH" 27 - 28 - gleam run 29 - 30 - - name: deploy assets to fly.io 31 - command: | 32 - fly deploy --remote-only
-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