Files
Luna 18d0b333d2
ci / test (push) Successful in 11s
Initial service implementation
2026-07-16 20:16:05 +00:00

514 B

Contributing

Setup

  1. Copy .env.example to .env.
  2. Install dependencies with npm install.
  3. Start the app with npm run dev or docker compose up --build.

Before opening changes

Run:

npm run build
npm test

If you are touching the running service flow, also run:

npm run smoke

Notes

  • Keep the code modular. Avoid adding unrelated logic into a single file.
  • Preserve the cleanup guarantees around temporary clone directories.
  • Do not commit private SSH keys.