// Moodle admin password
"passwd": "test",
// What to call your remote, the one pointing to remotes.mine
- "myRemote": "origin",
+ "myRemote": "github",
// What to call the upstream remote, the one pointing to the official repositoriy (stable or integration)
- "upstreamRemote": "upstream",
+ "upstreamRemote": "origin",
// The name of the data directory
"dataDir": "moodledata",
# Git repository.
C.set('remotes.mine', question('What is your remote?', C.get('remotes.mine')))
+C.set('myRemote', question('How to name your remote?', C.get('myRemote')))
+C.set('upstreamRemote', question('How to name the upsream remote (official Moodle remote)?', C.get('upstreamRemote')))
# Database settings.
C.set('db.mysqli.user', question('What is your MySQL user?', C.get('db.mysqli.user')))