Once your project has been created, you can launch the app by typing
$ sails lift
By default, you can access the app in the browser on port 1337. The URL with the port is shown in the terminal.
Another way to start the Sails app is with the node
command:
$ node app.js
However, you lose some development features of the lift
command like auto-reloading of the app when assets and view files are modified.
For development you can also use:
$ sails console
This allows you to execute command directly in command line. It's very useful for debugging Models.