Skip to content

Commit 809f4d1

Browse files
chore: run npm run format in deployment-dapp folder
1 parent ba41bf2 commit 809f4d1

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

deployment-dapp/src/config/config.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
//hosting url
32
export const HOST = 'https://bellecour.iex.ec';
43

@@ -16,7 +15,6 @@ export const APP_TAG = ['tee', 'scone'];
1615
export const WEB3_MAIL_ENS_NAME_DEV = 'web3mail-dev.apps.iexec.eth';
1716
export const WEB3_MAIL_ENS_NAME_PROD = 'web3mail.apps.iexec.eth';
1817

19-
2018
export const DOCKER_IMAGE_NAMESPACE = 'iexechub';
2119
export const DOCKER_IMAGE_REPOSITORY = 'web3mail-dapp';
2220

deployment-dapp/src/deployScript.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,15 @@ const main = async () => {
3939

4040
const iexec = getIExec(privateKey);
4141

42-
const dockerImageTag = deployEnvironment === GITHUB_DEPLOY_TO_DEV
43-
? DOCKER_IMAGE_DEV_TAG
44-
: DOCKER_IMAGE_PROD_TAG;
42+
const dockerImageTag =
43+
deployEnvironment === GITHUB_DEPLOY_TO_DEV
44+
? DOCKER_IMAGE_DEV_TAG
45+
: DOCKER_IMAGE_PROD_TAG;
4546

4647
if (!dockerImageTag) {
47-
throw Error(`Missing docker image tag for environment ${deployEnvironment}`);
48+
throw Error(
49+
`Missing docker image tag for environment ${deployEnvironment}`
50+
);
4851
}
4952

5053
//deploy app

0 commit comments

Comments
 (0)