This repository contains the source code for certs.email.
Install dependencies with npm install, then run:
npm run devOr start the server and open the app in a new browser tab:
npm run dev -- --openCreate a production build:
npm run buildRun it with:
node buildDATABASE_URL: PostgreSQL connection string.MAILTRAP_API_KEY: Mailtrap API token for sending email.WEBSITE_URL: Base URL used in email links.PORT: HTTP port for the Node server (defaults to3000).
Build and run the production image:
docker build -t certs-email .
docker run --rm -p 3000:3000 certs-email