UNPKG

@balderdash/sails-edge

Version:

API-driven framework for building realtime apps, using MVC conventions (based on Express and Socket.io)

22 lines (13 loc) 446 B
#!/usr/bin/env node /** * Module dependencies */ var CaptainsLog = require('captains-log'); module.exports = function() { var config = {}; var log = CaptainsLog(); log.info('To configure the Sails command-line interface, create a `.sailsrc` file.'); log.warn('`.sailrc` is currently experimental, and the API may change.'); log.warn('Please share your feedback on Github! (http://github.com/balderdashy/sails)'); return; };