ソースを参照

password has to be more secure now

Girish Ramakrishnan 6 年 前
コミット
88a6f5130d
2 ファイル変更3 行追加3 行削除
  1. 2 2
      start.sh
  2. 1 1
      test/test.js

+ 2 - 2
start.sh

@@ -35,8 +35,8 @@ if [[ ! -f /app/data/.setup_done ]]; then
     setup="{
         \"url\": \"${APP_ORIGIN}\",
         \"admin:username\": \"admin\",
-        \"admin:password\": \"changeme\",
-        \"admin:password:confirm\": \"changeme\",
+        \"admin:password\": \"changeme123\",
+        \"admin:password:confirm\": \"changeme123\",
         \"admin:email\": \"admin@cloudron.io\",
         \"database\": \"mongo\",
         \"mongo:host\": \"${MONGODB_HOST}\",

+ 1 - 1
test/test.js

@@ -21,7 +21,7 @@ describe('Application life cycle test', function () {
 
     var chrome = require('selenium-webdriver/chrome');
     var server, browser = new chrome.Driver(), uploadedImageUrl;
-    var username = 'admin', password = 'changeme';
+    var username = 'admin', password = 'changeme123';
 
     before(function (done) {
         var seleniumJar= require('selenium-server-standalone-jar');