dev-server.js 982 B

12345678910111213141516171819202122232425262728293031323334353637
  1. const express = require('express');
  2. const path = require('path');
  3. const ParseServer = require('parse-server').ParseServer;
  4. const app = express();
  5. const api = new ParseServer({
  6. databaseURI: 'postgresql://dev:666@dev.fmode.cn:5432/dev',
  7. appId: 'dev',
  8. masterKey: 'devmk',
  9. masterKeyIps: ['0.0.0.0/0','::/0'] ,
  10. allowClientClassCreation:true,
  11. allowHeaders:["*"],
  12. allowOrigin:"*",
  13. // fileKey: 'myFileKey',
  14. // cloud: './cloud/main.js',
  15. // push: { ... }, // See the Push wiki page
  16. // filesAdapter: ...,
  17. }
  18. );
  19. async function main(){
  20. await api.start();
  21. // Serve the Parse API at /parse URL prefix
  22. app.use('/parse', api.app);
  23. // 加载Agent专用路由
  24. const pdfRouter = require('./api/agent/loader/routes'); // 根据你的文件结构调整路径
  25. app.use('/api/agent', pdfRouter); // 使用路由
  26. const port = 1337;
  27. app.listen(port, function() {
  28. console.log('parse-server-example running on port ' + port + '.');
  29. });
  30. }
  31. main();