UNPKG

249 BJavaScriptView Raw
1'use strict';
2
3const util = require('./src/util/util');
4require('colors');
5require('./server')().then(function(state) {
6 util.log(` > Serving the Form.io API Platform at ${state.config.domain.green}`);
7 state.server.listen(state.config.port);
8});