this repo has no description
0
fork

Configure Feed

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

Deploy to fly.io

alice 5d79ad54 172ec3c0

+59
+5
.dockerignore
··· 1 + fly.toml 2 + Dockerfile 3 + .dockerignore 4 + node_modules 5 + .git
+2
.gitignore
··· 130 130 .pnp.* 131 131 132 132 src/config.js 133 + 134 + build
+6
Dockerfile
··· 1 + FROM node:18-alpine as builder 2 + COPY . /app 3 + WORKDIR /app 4 + RUN npm i && npm run build 5 + FROM pierrezemb/gostatic 6 + COPY --from=builder /app/build/ /srv/http/
+46
fly.toml
··· 1 + # fly.toml app configuration file generated for bluesky-heatmap on 2023-04-21T14:14:00+01:00 2 + # 3 + # See https://fly.io/docs/reference/configuration/ for information about how to use this file. 4 + # 5 + 6 + app = "bluesky-heatmap" 7 + primary_region = "lhr" 8 + kill_signal = "SIGINT" 9 + kill_timeout = 5 10 + processes = [] 11 + 12 + [deploy] 13 + strategy = "immediate" 14 + 15 + [env] 16 + 17 + [experimental] 18 + allowed_public_ports = [] 19 + auto_rollback = true 20 + 21 + [[services]] 22 + http_checks = [] 23 + internal_port = 8043 24 + processes = ["app"] 25 + protocol = "tcp" 26 + script_checks = [] 27 + 28 + [services.concurrency] 29 + hard_limit = 25 30 + soft_limit = 20 31 + type = "connections" 32 + 33 + [[services.ports]] 34 + handlers = ["http"] 35 + port = 80 36 + force_https = true 37 + 38 + [[services.ports]] 39 + handlers = ["tls", "http"] 40 + port = 443 41 + 42 + [[services.tcp_checks]] 43 + grace_period = "1s" 44 + interval = "15s" 45 + restart_limit = 0 46 + timeout = "2s"