1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-09-22 10:09:03 +00:00
awesome-cheatsheets/backend/adonis.js
2020-04-10 14:40:13 +02:00

36 lines
1.3 KiB
JavaScript

/********************************************************************************************
* ADONIS CHEATSHEET
* https://adonisjs.com/
********************************************************************************************/
/********************************************************************************************
* AVAILABLE CLI COMMANDS
********************************************************************************************/
build // Compile typescript code to Javascript. Optionally watch for file changes
invoke // Invoke post install instructions on a given AdonisJs package
serve // Compile typescript code to Javascript and start the HTTP server
// Dump
dump:rcfile // Dump contents of .adonisrc.json file along with defaults
// Generate
generate:key // Generate a new APP_KEY secret
generate:manifest // Generate manifest file to execute ace commands
// List
list:routes // List application routes
// Make
make:command // Make a new ace command
make:controller // Make a new HTTP controller
make:middleware // Make a new middleware
make:provider // Make a new IoC container provider
make:validator // Make a new validator
make:view // Make a new view template