backend: add MEET_API_KEY to environment files and introduce start:ci script in package.json

This commit is contained in:
juancarmore 2025-06-19 12:20:14 +02:00
parent 5dcde7a153
commit 0154947fcf
3 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,5 @@
USE_HTTPS=false
MEET_LOG_LEVEL=debug
SERVER_CORS_ORIGIN=*
MEET_API_KEY=meet-api-key
MEET_WEBHOOK_ENABLED=false

View File

@ -1,4 +1,5 @@
USE_HTTPS=false
MEET_LOG_LEVEL=verbose
SERVER_CORS_ORIGIN=*
MEET_API_KEY=meet-api-key
MEET_WEBHOOK_ENABLED=false

View File

@ -33,6 +33,7 @@
"doc:internal-api": "mkdir -p public/openapi && cd openapi && npx openapi-generate-html -i openvidu-meet-internal-api.yaml --ui=stoplight --theme=dark --title 'OpenVidu Meet Internal REST API' --description 'OpenVidu Meet Internal REST API' -o ../public/openapi/internal.html",
"start:prod": "NODE_ENV=production node dist/src/server.js",
"start:dev": "NODE_ENV=development nodemon",
"start:ci": "NODE_ENV=ci node dist/src/server.js",
"package:build": "npm run build:prod && npm pack",
"lib:sync-pro": "npm run package:build && cp openvidu-meet-server-*.tgz ../../openvidu-meet-pro/backend",
"typings:sync": "npm run sync-ce --prefix ../typings",