Skip to content

Commit

Permalink
Add A4A Environment
Browse files Browse the repository at this point in the history
  • Loading branch information
yashwin committed Mar 1, 2024
1 parent fb8f9a6 commit 9618004
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const config: AppConfig = {
project: 'Automattic/wp-calypso',
},

envs: [ 'calypso', 'jetpack' ],
envs: [ 'calypso', 'jetpack', 'a8c-for-agencies' ],

allowedDockerRepositories: [ 'registry.a8c.com' ],

Expand All @@ -64,5 +64,9 @@ export function envContainerConfig( environment: RunEnv ): Dockerode.ContainerCr
return {
Env: [ 'NODE_ENV=jetpack-cloud-horizon', 'CALYPSO_ENV=jetpack-cloud-horizon' ],
};
case 'a8c-for-agencies':
return {
Env: [ 'NODE_ENV=a8c-for-agencies-horizon', 'CALYPSO_ENV=a8c-for-agencies-horizon' ],
};
}
}

0 comments on commit 9618004

Please sign in to comment.