()
| 6 | import runner from './utils/runner'; |
| 7 | |
| 8 | const help = function () { |
| 9 | console.log(' Get Started guide:'); |
| 10 | console.log(''); |
| 11 | console.log(' Please have a look at the get started guide!'); |
| 12 | console.log(' http://docs.parseplatform.org/parse-server/guide/'); |
| 13 | console.log(''); |
| 14 | console.log(''); |
| 15 | console.log(' Usage with npm start'); |
| 16 | console.log(''); |
| 17 | console.log(' $ npm start -- path/to/config.json'); |
| 18 | console.log(' $ npm start -- --appId APP_ID --masterKey MASTER_KEY --serverURL serverURL'); |
| 19 | console.log(' $ npm start -- --appId APP_ID --masterKey MASTER_KEY --serverURL serverURL'); |
| 20 | console.log(''); |
| 21 | console.log(''); |
| 22 | console.log(' Usage:'); |
| 23 | console.log(''); |
| 24 | console.log(' $ parse-server path/to/config.json'); |
| 25 | console.log(' $ parse-server -- --appId APP_ID --masterKey MASTER_KEY --serverURL serverURL'); |
| 26 | console.log(' $ parse-server -- --appId APP_ID --masterKey MASTER_KEY --serverURL serverURL'); |
| 27 | console.log(''); |
| 28 | }; |
| 29 | |
| 30 | runner({ |
| 31 | definitions, |
nothing calls this directly
no test coverage detected
searching dependent graphs…