We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b07bd08 commit 5dfbc0cCopy full SHA for 5dfbc0c
1 file changed
config/config.js
@@ -0,0 +1,16 @@
1
+exports.GITHUB_CLIENT_ID = '3909fc1ee9f8ed9e87f2';
2
+exports.GITHUB_CLIENT_SECRET = 'e5b3802ef773d8d32a8b29fe958d04e591be850d';
3
+
4
+// This allows everybody to sign up
5
+# exports.PERMITTED_USERS = false;
6
+// This would only allow alice and bob to sign up
7
+//exports.PERMITTED_USERS = ['alice', 'bob'];
8
9
+// Add SSL Certificates to use Cloud9Hub over SSL
10
+// (Cloud9 Workspaces will still be unsecured standard HTTP)
11
+//exports.SSL = {
12
+// key: "/path/to/ssl.key",
13
+// cert: "/path/to/ssl.pem"
14
+//};
15
16
+exports.BASE_URL = 'http://localhost';
0 commit comments