You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 regels
275 B

  1. const path = require('path');
  2. const Application = require('thinkjs');
  3. const watcher = require('think-watcher');
  4. const instance = new Application({
  5. ROOT_PATH: __dirname,
  6. APP_PATH: path.join(__dirname, 'src'),
  7. watcher: watcher,
  8. env: 'development'
  9. });
  10. instance.run();