testapp: rename API_KEY to MEET_API_KEY for consistency in environment configuration

This commit is contained in:
juancarmore 2025-07-02 20:31:24 +02:00
parent 9dc2796d24
commit e1bf07532c
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
OPENVIDU_MEET_URL=http://localhost:6080/api/v1
API_KEY=meet-api-key
MEET_API_KEY=meet-api-key
PORT=5080

View File

@ -9,7 +9,7 @@ export class ConfigService {
constructor() {
this.meetApiUrl = process.env.OPENVIDU_MEET_URL!;
this.meetApiKey = process.env.API_KEY!;
this.meetApiKey = process.env.MEET_API_KEY!;
this.serverPort = parseInt(process.env.PORT!, 10);
}
}