···1DATABASE_URL=file:./label-watcher.db
2MIGRATIONS_FOLDER=drizzle
3+# Email sending: set RESEND_API_KEY to use Resend, or NOTIFY_SMTP_URL to use SMTP (one is required)
4+RESEND_API_KEYb=123
5NOTIFY_SMTP_URL=smtp://localhost:1025
6NOTIFY_SENDER_EMAIL=yougotmail@pdsmoover.com
7LOG_LEVEL=info
···2021COPY --from=builder /app/dist /app/dist
22COPY ./drizzle /app/drizzle
23+# A very bad hack. need to see how to get a toml file to the volume of railway without this
24+# COPY settings.toml /app/settings.toml
25COPY --from=builder /app/package.json /app/pnpm-lock.yaml /app/pnpm-workspace.yaml ./
26# RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile
27RUN pnpm install --prod --frozen-lockfile