Change default password

This commit is contained in:
Girish Ramakrishnan 2019-01-03 15:55:07 -08:00
parent 5e5336cfba
commit f379cd7721
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ This application does not integrate with Cloudron authentication.
There is a preconfigured administrator account with the following credentials:
* Username: `admin`
* Password: `password`
* Password: `changeme`
(Please change that password on first login)

View File

@ -13,7 +13,7 @@ if ! [ -f /app/data/.installed ]; then
--db-user "${MYSQL_USERNAME}" --db-password "${MYSQL_PASSWORD}" \
--db-base "${MYSQL_DATABASE}" --db-prefix "" \
--disable_update
php cli/create-user.php --user admin --password password --language en
php cli/create-user.php --user admin --password changeme --language en
php cli/actualize-user.php --user admin
touch /app/data/.installed
echo "Done."