|
1 | 1 | //hosting url |
2 | | -export const HOST = 'https://bellecour.iex.ec'; |
3 | 2 |
|
4 | 3 | //deployment parameters |
5 | 4 | export const APP_NAME = 'web3telegram'; |
6 | 5 | export const APP_TYPE = 'DOCKER'; |
7 | 6 | export const FRAMEWORK = 'scone'; |
8 | 7 |
|
9 | | -//publish sell order parameters |
10 | | -export const DEFAULT_APP_PRICE = 0; |
11 | | -export const DEFAULT_APP_VOLUME = 1000000; |
12 | 8 | export const APP_TAG = ['tee', 'scone']; |
13 | 9 |
|
14 | | -//ENS name |
15 | | -export const WEB3_TELEGRAM_ENS_DOMAIN = 'apps.iexec.eth'; |
16 | | -export const WEB3_TELEGRAM_ENS_NAME_DEV = `web3telegram-test.${WEB3_TELEGRAM_ENS_DOMAIN}`; |
17 | | -export const WEB3_TELEGRAM_ENS_NAME_PROD = `web3telegram.${WEB3_TELEGRAM_ENS_DOMAIN}`; |
18 | | - |
19 | 10 | export const DOCKER_IMAGE_NAMESPACE = 'iexechub'; |
20 | 11 | export const DOCKER_IMAGE_REPOSITORY = 'web3telegram-dapp'; |
21 | | - |
22 | | -// Use environment variable for sconified image tag if provided, otherwise fallback to computed tags |
23 | | -export const DOCKER_IMAGE_PROD_TAG = process.env.SCONIFIED_IMAGE_TAG; |
24 | | -export const DOCKER_IMAGE_DEV_TAG = process.env.SCONIFIED_IMAGE_TAG; |
25 | | - |
26 | | -//deployment targets for GitHub Actions |
27 | | -export const DEPLOY_TARGET_DEV = 'dapp-dev'; |
28 | | -export const DEPLOY_TARGET_PROD = 'dapp-prod'; |
29 | | -export const DEPLOY_TARGET_SELL_ORDER_DEV = 'dapp-publish-sell-order-dev'; |
30 | | -export const DEPLOY_TARGET_SELL_ORDER_PROD = 'dapp-publish-sell-order-prod'; |
31 | | -export const DEPLOY_TARGET_REVOKE_SELL_ORDER_DEV = 'dapp-revoke-sell-order-dev'; |
32 | | -export const DEPLOY_TARGET_REVOKE_SELL_ORDER_PROD = |
33 | | - 'dapp-revoke-sell-order-prod'; |
34 | | -export const DEPLOY_TARGET_PUSH_SECRET_DEV = 'dapp-push-secret-dev'; |
35 | | -export const DEPLOY_TARGET_PUSH_SECRET_PROD = 'dapp-push-secret-prod'; |
36 | | -export const DEPLOY_TARGET_CONFIGURE_ENS_DEV = 'configure-ens-dev'; |
37 | | -export const DEPLOY_TARGET_CONFIGURE_ENS_PROD = 'configure-ens-prod'; |
0 commit comments