gpt4 book ai didi

mongodb - 在新的 Meteor 应用程序开发中使用本地 MongoDB 而不是 minimongo

转载 作者:可可西里 更新时间:2023-11-01 09:07:46 25 4
gpt4 key购买 nike

是否可以使用常规 MongoDB 的本地实例代替默认的 minimongo 来启动一个新的 Meteor 项目?

如果是,怎么做到的?

最佳答案

用 meteor 运行的 mongodb 仍然是标准的 mongodb,minimongo 只是它的客户端实现,允许浏览器端对集合进行查询。

unofficial meteor faq 中所述,使用您的终端像这样启动 meteor

MONGO_URL=mongodb://localhost:27017/database meteor

编辑:

你可以在 projectdir/.meteor/local/build/README 中阅读:

This is a Meteor application bundle. It has only one dependency, node.js (with the 'fibers' package). To run the application:

$ npm install fibers@1.0.0
$ export MONGO_URL='mongodb://user:password@host:port/databasename'
$ export ROOT_URL='http://example.com'
$ export MAIL_URL='smtp://user:password@mailhost:port/'
$ node main.js

Use the PORT environment variable to set the port where the application will listen. The default is 80, but that will require root on most systems.

Find out more about Meteor at meteor.com.

关于mongodb - 在新的 Meteor 应用程序开发中使用本地 MongoDB 而不是 minimongo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15043714/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com