I am using "setup --config config.json " to configure NodeBB server, everything works as expected except admin user that is not created with config.json attributes. It just generates a random password.
The following is logged: "Password was not provided during automated setup, generating one.." although I provided the password according with the json bellow:
{
"url": "http://localhost",
"port": "4567",
"admin:username": "admin",
"admin:email": "[email protected]",
"admin:password": "password",
"admin:password:confirm": "password",
"database": "postgres",
"postgres": {
"host": "docker-database",
"port": "5432",
"username": "postgres",
"password": "pssword",
"database": "database",
"ssl": "false"
}
}
Anyone have this problem also?