sails-generate-model
Version:
Generate a model for a Sails app.
83 lines (50 loc) • 2.41 kB
Markdown

# sails-generate-model
A `model` generator for use with the Sails command-line interface.
### Installation
Certain generators are installed by default in Sails, but they can be overridden. Check the [Sails docs](http://sailsjs.org/#!documentation) for information on installing generator overrides / custom generators.
<!--
```sh
$ npm install sails-generate-model
```
-->
### Production Usage
##### On the command line
```sh
$ sails generate model
```
##### In a node script
```javascript
var path = require('path');
var sailsgen = require('sails-generate');
var scope = {
rootPath: path.resolve(__dirname)
};
sailsgen(require('sails-generate-model'), scope, function (err) {
if (err) throw err;
// It worked.
});
```
### Development
To get started quickly and see this generator in action, run the `bin/index.js` script:
```sh
$ git clone YOUR_FORK_OF_THIS_REPO sails-generate-model-fork
$ cd sails-generate-model-fork
$ npm install
$ node ./bin
```
`bin/index.js` is a simple script, bundled only for convenience, that runs the generator with hard-coded scope variables. Please feel free to modify that file however you like! Also see `CONTRIBUTING.md` for more information on overriding/enhancing generators.
### Questions?
See `FAQ.md`.
### More Resources
- [Stackoverflow](http://stackoverflow.com/questions/tagged/sails.js)
- [#sailsjs on Freenode](http://webchat.freenode.net/) (IRC channel)
- [Twitter](https://twitter.com/sailsjs)
- [Professional/enterprise](https://github.com/balderdashy/sails-docs/blob/master/FAQ.md#are-there-professional-support-options)
- [Tutorials](https://github.com/balderdashy/sails-docs/blob/master/FAQ.md#where-do-i-get-help)
- <a href="http://sailsjs.org" target="_blank" title="Node.js framework for building realtime APIs."><img src="https://github-camo.global.ssl.fastly.net/9e49073459ed4e0e2687b80eaf515d87b0da4a6b/687474703a2f2f62616c64657264617368792e6769746875622e696f2f7361696c732f696d616765732f6c6f676f2e706e67" width=60 alt="Sails.js logo (small)"/></a>
### License
**[MIT](./LICENSE)**
© 2014 [balderdashy](http://github.com/balderdashy) & [contributors]
[Mike McNeil](http://michaelmcneil.com), [Balderdash](http://balderdash.co) & contributors
[Sails](http://sailsjs.org) is free and open-source under the [MIT License](http://sails.mit-license.org/).