Release: weekly deploy

This commit is contained in:
Danila Khodjaef
2026-07-09 13:31:47 +03:00
parent 3810e61bb8
commit f72ddcc3e4
11 changed files with 154 additions and 5 deletions
+6 -1
View File
@@ -10,7 +10,12 @@ require('dotenv').config({ path: path.join(__dirname, '..', '.env') });
const apiPort = process.env.DEV_API_PORT || process.env.PORT || '3451';
const vitePort = process.env.DEV_WEB_PORT || '5173';
const env = { ...process.env, PORT: apiPort };
const env = {
...process.env,
PORT: apiPort,
APP_ENV: process.env.APP_ENV || 'dev',
IMAGE_TAG: process.env.IMAGE_TAG || 'dev-local',
};
function run(label, command, args, cwd) {
const child = spawn(command, args, {