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

29 lines
514 B
Markdown

# 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:
```bash
npm run build
npm test
```
If you are touching the running service flow, also run:
```bash
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.