fix minor typos

This commit is contained in:
Thomas Nahuel Rusiecki 2025-02-20 02:37:29 -03:00
parent 2263e9a514
commit 239af6e27f
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ END
deployment_strategy() {
init_flagfile="${idhub_dir}/already_configured"
init_flagfile="${idhub_dir}/already_configured.idhub"
if [ ! -f "${init_flagfile}" ]; then
echo "INFO: detected NEW deployment"

View file

@ -127,7 +127,7 @@ DATABASES = {
'NAME': os.getenv('IDHUB_DB_NAME', 'idhub'),
'USER': os.getenv('IDHUB_DB_USER', 'ereuse'),
'PASSWORD': os.getenv('IDHUB_DB_PASSWORD', 'ereuse'),
'HOST': os.getenv('IDHUB_DB_HOS', 'idhub-postgres'),
'HOST': os.getenv('IDHUB_DB_HOST', 'idhub-postgres'),
'PORT': os.getenv('IDHUB_DB_PORT', '5432'),
}
}