Development tooling for Drumee back-end services.
npm i --save-dev @drumee/server-dev-toolsInstalling this package runs a postinstall hook that symlinks its commands
into your project's node_modules/.bin, so they are callable from npm scripts.
It does not declare them through package.json bin.
| Command | Runs |
|---|---|
drumee-server-devel |
Development server with live reload |
drumee-server-deploy |
Build and deploy |
drumee-server-plugin |
Register or remove a server plugin |
drumee-server-endpoint |
Manage development endpoints |
Wire them up in your package.json:
{
"scripts": {
"dev": "drumee-server-devel",
"deploy": "drumee-server-deploy",
"register-plugin": "drumee-server-plugin"
}
}On first install the hook also copies .dev-tools.tpl to .dev-tools.rc in the
parent directory; that is where per-project settings live.
Used by schemas, setup and setup-schemas.
See the org CONTRIBUTING guide. Questions: Discussions.
MIT — see LICENSE.