sails: page add

Sails: Replaced general generate command with more specific examples.  Removed sails --version command becuase it was redundant

Sails: added header tag
waldyrious/alt-syntax
steventhanna 2016-01-05 23:25:47 -06:00
parent f3aba7930a
commit 77344da696
1 changed files with 23 additions and 0 deletions

23
pages/common/sails.md Normal file
View File

@ -0,0 +1,23 @@
# sails
> Sails.js is a realtime enterprise level MVC framework built on top of Node.js.
- Start Sails
`sails lift`
- Create new Sails project
`sails new {{projectName}}`
- Generate Sails API
`sails generate {{name}}`
- Generate Sails Controller
`sails generate controller {{name}}`
- Generate Sails Model
`sails generate model {{name}}`