Thanks for contributing to Metapi.
- Install dependencies:
npm install- Copy environment template:
cp .env.example .env- Run migration and start development:
npm run db:migrate
npm run devRun before opening a PR:
npm test
npm run build- Keep PRs focused and small.
- Add or update tests for behavior changes.
- Update docs when user-facing behavior/config changes.
- Avoid committing runtime data (
data/) or temporary files (tmp/).
Use concise messages with clear scope, for example:
feat: add token route health guardfix: handle empty model list in dashboarddocs: clarify docker env setup