not my website
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Deploy to fly.io

+26
+1
.dockerignore
··· 1 + fly.toml
+3
Dockerfile
··· 1 + FROM pierrezemb/gostatic 2 + COPY . /srv/http/ 3 + CMD ["-port","8080","-https-promote", "-enable-logging"]
+22
fly.toml
··· 1 + # fly.toml app configuration file generated for naomieow-xyz on 2024-05-29T21:30:13+01:00 2 + # 3 + # See https://fly.io/docs/reference/configuration/ for information about how to use this file. 4 + # 5 + 6 + app = 'naomieow-xyz' 7 + primary_region = 'lhr' 8 + 9 + [build] 10 + 11 + [http_service] 12 + internal_port = 8080 13 + force_https = true 14 + auto_stop_machines = true 15 + auto_start_machines = true 16 + min_machines_running = 0 17 + processes = ['app'] 18 + 19 + [[vm]] 20 + memory = '1gb' 21 + cpu_kind = 'shared' 22 + cpus = 1