Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.19 KB

README.adoc

File metadata and controls

30 lines (20 loc) · 1.19 KB

test161.ops-class.org Web Interface

Build Status

Local Test

Meteor

There are four environment variables need to set before starting local Meteor instance.

  • TEST161_DEBUG: debug mode, you will use a hard code account [email protected] to login when enabled

  • MONGO_URL: your MongoDB url (at least 3.2), the test161 server have to access the same MongoDB

  • MONGO_OPLOG_URL: your MongoDB oplog url (at least 3.2), your MongoDB should enable oplog support, click here for details

  • KEYGEN_ENDPOINT: url for public key generate endpoint, the test161 server address

Please use ./start_meteor to start Meteor app.

The default environments:

  • TEST161_DEBUG: 1, enabled

  • MONGO_URL: mongodb://localhost:27017/test161

  • MONGO_OPLOG_URL: mongodb://localhost:27017/local?authSource=test161

  • KEYGEN_ENDPOINT: http://localhost:4000/api-v1/keygen

If you want to change MONGO_URL or other variables, please use command like this:

MONGO_URL=mongodb://localhost:27017/test ./start_meteor