Gateherald is a webhook gateway that receives inbound events, transforms payloads through a template-driven mapper, and forwards to one or more target endpoints.
- Gateherald Docs
- Source:
docs/
-
Create
.env.developmentfrom.env.development.example. -
Run the following:
npm installnpm start
Note:
.env.developmentis ignored by git. Keep real secrets there and commit only the example files.
npm start # NODE_ENV=development, loads .env.development
npm run start:prod # NODE_ENV=production, loads .env.production
npm run build:css # Build ui/dist/styles.css from ui/styles.css
npm run db:migrate # Run migration scripts
npm run db:seed # Run migrations + seed scripts
npm run db:reset # Delete DB, then run migrations + seed scripts
npm run build:docs # Local docs build
npx serve .site # Preview local docs after build (include -l flag and port if needed)Licensed under the MIT License. See LICENSE.