This is a starter application generated by the Bush.js CLI.
- Copy
.env.exampleto.env - Run:
npm install
- Start development mode:
npm run dev
app/— application controllers and modelsroutes/— route definitionssrc/— app bootstrap and entrypointconfig/— configuration files
Compile TypeScript to JavaScript before production:
npm run buildRun the compiled app:
npm run startThe bushjs package ships a console runner (bushjs-console). From your project root:
npm run bush:console -- make:model Product
npm run bush:console -- make:controller OrderController
npx bushjs-consoleThe part after -- is passed to the framework (command name + arguments). Run npm run bush:console with no args to list commands.