58ca4e68db
- Go backend API with full CRUD for all modules (CRM, Sales, Finance, HR, Legal, Marketing, Support, Purchase, Inventory, Projects, Automation, Analytics) - Rust analytics service with parallel report generation - C runtime with POSIX shared memory IPC - PostgreSQL schema with 30+ tables, full migrations - Redis cache, sessions, pub/sub - Kafka event streaming with Zookeeper - WebSocket hub for real-time updates - Automation engine with cron jobs, workflows, event triggers - JWT authentication, multi-tenant from start - Docker Compose with all services - Nginx reverse proxy with rate limiting - Integration tests passing - Feature gap analysis against Fortnox/Odoo/Visma Refs: BOC-001
30 lines
1.2 KiB
Plaintext
30 lines
1.2 KiB
Plaintext
Usage: nodemon [options] [script.js] [args]
|
|
|
|
Options:
|
|
|
|
--config file ............ alternate nodemon.json config file to use
|
|
-e, --ext ................ extensions to look for, ie. js,pug,hbs.
|
|
-x, --exec app ........... execute script with "app", ie. -x "python -v".
|
|
-w, --watch path ......... watch directory "path" or files. use once for
|
|
each directory or file to watch.
|
|
-i, --ignore ............. ignore specific files or directories.
|
|
-V, --verbose ............ show detail on what is causing restarts.
|
|
-- <your args> ........... to tell nodemon stop slurping arguments.
|
|
|
|
Note: if the script is omitted, nodemon will try to read "main" from
|
|
package.json and without a nodemon.json, nodemon will monitor .js, .mjs, .coffee,
|
|
.litcoffee, and .json by default.
|
|
|
|
For advanced nodemon configuration use nodemon.json: nodemon --help config
|
|
See also the sample: https://github.com/remy/nodemon/wiki/Sample-nodemon.json
|
|
|
|
Examples:
|
|
|
|
$ nodemon server.js
|
|
$ nodemon -w ../foo server.js apparg1 apparg2
|
|
$ nodemon --exec python app.py
|
|
$ nodemon --exec "make build" -e "styl hbs"
|
|
$ nodemon app.js -- --config # pass config to app.js
|
|
|
|
\x1B[1mAll options are documented under: \x1B[4mnodemon --help options\x1B[0m
|