This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
storage: | |
dbPath: /var/lib/mongodb | |
journal: | |
enabled: true | |
engine: wiredTiger | |
wiredTiger: | |
engineConfig: | |
cacheSizeGB: 0.3 | |
systemLog: | |
destination: file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
auto lo | |
iface lo inet loopback | |
# The primary network interface | |
auto eth0 | |
iface eth0 inet static | |
address 10.0.1.2 | |
netmask 255.255.255.0 | |
gateway 10.0.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// !!! THIS IS META CODE, NOT A REAL SUGGESTION TO A CODEBASE | |
// JUST VERY SIMPLIFIED FORM OF PROPOSAL | |
Meteor._user = new ReactiveVar(null); | |
Meteor._userId = new ReactiveVar(null); | |
Tracker.autorun(() => { | |
Meteor._user.set(Meteor.user() || null); | |
}); | |
Tracker.autorun(() => { | |
Meteor._userId.set(Meteor.userId() || null); |
OlderNewer