1clusterName: unicorn
2clusterRegion: eu-north-13projectName: clarity
45applications:6nextjs:7type: node
8appRoot: ./node
910node:11version:2012environmentVariables:13FRONTEND_URL:"https://{{ node.host.0 }}"14APPLICATION_MODE: development
15NODE_OPTIONS:--openssl-legacy-provider
16environmentFiles:17- ./.env.secrets
18hooks:19build:|20 set -eu
21 npm i
22 npm run build23run:|24 npm run start2526overrides:27-condition:28environments:[ production ]29hosts:30- example.com
31node:32environmentVariables:33APPLICATION_MODE: production
34