sails new
sails new <appName> creates a new Sails project in a folder called appName.
Options:
--no-linkerDisable automatic asset linking in your view and static HTML files (the relevant grunt tasks will not be created)--no-frontendDisable the generation of theassetsfolder and files. Views will be created with hardcopied linked resources off of sailsjs.org.--template=[template language]Use a different template language than the default (e.g.jade). Requires that a views generator for that language (e.g.sails-generate-views-jade) be installed in your global node path (e.g.~/node_modules/works).
sails newis really just a special generator which runssails-generate-new. In other words, runningsails new foois an alias for runningsails generate new foo, and like any Sails generator, the actual generator module which gets run can be overridden in your global~/.sailsrcfile.