()
| 92 | } |
| 93 | |
| 94 | function printSuccessMessage() { |
| 95 | console.log('[' + process.pid + '] parse-server running on ' + options.serverURL); |
| 96 | if (options.mountGraphQL) { |
| 97 | console.log( |
| 98 | '[' + |
| 99 | process.pid + |
| 100 | '] GraphQL running on http://localhost:' + |
| 101 | options.port + |
| 102 | options.graphQLPath |
| 103 | ); |
| 104 | } |
| 105 | if (options.mountPlayground) { |
| 106 | console.log( |
| 107 | '[' + |
| 108 | process.pid + |
| 109 | '] Playground running on http://localhost:' + |
| 110 | options.port + |
| 111 | options.playgroundPath |
| 112 | ); |
| 113 | } |
| 114 | } |
| 115 | }, |
| 116 | }); |
| 117 |