this repo has no description

Fly deployment

seth.computer 023d25ba c53aa39d

verified
+57 -9
+10
.dockerignore
··· 1 + node_modules 2 + .git 3 + .gitignore 4 + *.log 5 + .DS_Store 6 + .env 7 + .env.* 8 + packages/*/data 9 + packages/web/data 10 + !packages/web/public
+13
Dockerfile
··· 1 + # syntax=docker/dockerfile:1 2 + 3 + FROM oven/bun:1-alpine AS builder 4 + WORKDIR /app 5 + COPY package.json bun.lock ./ 6 + COPY packages packages 7 + RUN bun install --frozen-lockfile 8 + 9 + WORKDIR /app/packages/web 10 + ENV NODE_ENV=production 11 + ENV PORT=8080 12 + EXPOSE 8080 13 + CMD ["bun", "run", "src/server.ts"]
+34
fly.toml
··· 1 + # fly.toml app configuration file generated for stdpub-web on 2026-01-13T21:16:04-06:00 2 + # 3 + # See https://fly.io/docs/reference/configuration/ for information about how to use this file. 4 + # 5 + 6 + app = 'stdpub-web' 7 + primary_region = 'ord' 8 + 9 + [build] 10 + dockerfile = "Dockerfile" 11 + 12 + [env] 13 + PUBLIC_URL = "https://std.pub" 14 + 15 + [http_service] 16 + internal_port = 8080 17 + force_https = true 18 + auto_stop_machines = true 19 + auto_start_machines = true 20 + min_machines_running = 0 21 + max_machines = 1 22 + 23 + [[http_service.checks]] 24 + interval = '10s' 25 + timeout = '2s' 26 + grace_period = '5s' 27 + method = 'GET' 28 + path = '/' 29 + 30 + [[vm]] 31 + memory = '1gb' 32 + cpu_kind = 'shared' 33 + cpus = 1 34 + memory_mb = 1024
-9
packages/web/.dockerignore
··· 1 - node_modules 2 - .git 3 - .gitignore 4 - *.log 5 - .DS_Store 6 - .env 7 - .env.* 8 - data/private-key.json 9 - data/oauth.db