nora-service
nora-service copied to clipboard
FIREBASE_CONFIG and GCLOUD_PROJECT environment variables are missing
@andrei-tatar Got my heroku installation working previously, but suddenly I got the error Warning, FIREBASE_CONFIG and GCLOUD_PROJECT environment variables are missing. Initializing firebase-admin will fail
, and seems that my database is empty, resulting in login: { error: password authentication failed for user "ohubflebemtayr"
Traced the error to line 61 of login.ts
:
await this.userRepository.value.createUserRecordIfNotExists(decoded.uid);
Inspected my postgres db on Heroku and gasp it is empty!
@leongwaikay yup, unfortunately a lot of things are missing from the description. I'll try to run through them and update any missing things.
Also the code (currently) does not automatically create the table on the 1st run. Will need to update that as well.
@leongwaikay the exact same thing happened to me 2days ago for some reason. this happened:
login: { error: password authentication failed for user "ohubflebemtayr"
and its because of this in config.ts:
export const postgres = { connectionString: 'postgres://ohubflebemtayr:798e58067843da246bd9e3016c16b1e91e8429ed1f835bc028b4654905476c4b@ec2-79-125-26-232.eu-west-1.compute.amazonaws.com:5432/d971p7nrn8fnsv', ssl: ssl, max: (isLocal ? local.postgresMax : ~~getCfg('POSTGRES_MAX')) || 5, idleTimeoutMillis: (isLocal ? local.postgresIdleTimeoutMills : ~~getCfg('POSTGRES_IDLETIMEOUTMILLS')) || 4 * this.HOUR, connectionTimeoutMillis: (isLocal ? local.postgressConnectionTimeoutMills : ~~getCfg('CONNECTIONTIMEOUTMILLIS')) || 2000 };
i mention the line to edit to create the table in the guide btw, but i have to apologize for anything missing in there. @andrei-tatar let me know when you edit the tutorial so i can test it for you from scratch
ah sorry, forgot the fix :joy: change
connectionString: 'postgres://ohubflebemtayr:798e58067843da246bd9e3016c16b1e91e8429ed1f835bc028b4654905476c4b@ec2-79-125-26-232.eu-west-1.compute.amazonaws.com:5432/d971p7nrn8fnsv'
to connectionString: getCfg(DATABASE_URL)
to
connectionString: getCfg(DATABASE_URL)
Shoud be connectionString: getCfg('DATABASE_URL')
So you mean previously we were connecting to someone else postgres?!
Also the code (currently) does not automatically create the table on the 1st run. Will need to update that as well.
Seems like @nicandris has added the code in user.repository.ts
Hey guys, Is this issue resolved yet? At first run looks like still the necessary database/tables are not created. Not sure if it's related but when I try to add my project in Google Home app I can now authenticate successfully but nothing happens after that. I mean no project is added to my Google Home app. Any hints to fix the issue is highly appreciated. Cheers
Hi, is it correct that the change connectionString: getCfg('DATABASE_URL')
must be made in the config.ts
?