(compose: string)
| 909 | } |
| 910 | |
| 911 | async function calcAppId(compose: string) { |
| 912 | const composeHash = await calcComposeHash(compose); |
| 913 | return composeHash.slice(0, 40); |
| 914 | } |
| 915 | |
| 916 | async function encryptEnv(envs: EncryptedEnvEntry[], kmsEnabled: boolean, appId: string | null) { |
| 917 | if (!kmsEnabled || envs.length === 0) { |
no test coverage detected