···11DATABASE_URL=file:./label-watcher.db
22MIGRATIONS_FOLDER=drizzle
33+# Email sending: set RESEND_API_KEY to use Resend, or NOTIFY_SMTP_URL to use SMTP (one is required)
44+RESEND_API_KEYb=123
35NOTIFY_SMTP_URL=smtp://localhost:1025
46NOTIFY_SENDER_EMAIL=yougotmail@pdsmoover.com
57LOG_LEVEL=info
+2
Dockerfile
···20202121COPY --from=builder /app/dist /app/dist
2222COPY ./drizzle /app/drizzle
2323+# A very bad hack. need to see how to get a toml file to the volume of railway without this
2424+# COPY settings.toml /app/settings.toml
2325COPY --from=builder /app/package.json /app/pnpm-lock.yaml /app/pnpm-workspace.yaml ./
2426# RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile
2527RUN pnpm install --prod --frozen-lockfile