Skip to content

Commit

Permalink
Merge branch 'main' into github-actions/upgrade-main
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens authored Jul 27, 2024
2 parents 1676c38 + bc1162e commit 89f6fe1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ It provides

For now have a look at the [example project](https://github.com/bluedynamics/cdk8s-plone-example)..

```typescript

## Development

Expand Down
2 changes: 1 addition & 1 deletion src/plone.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export class Plone extends Construct {
// Environment for RAZZLE
var frontendEnvironment = frontend.environment ?? new kplus.Env([], {});
if (frontendEnvironment.variables.RAZZLE_INTERNAL_API_PATH === undefined) {
frontendEnvironment?.addVariable('RAZZLE_INTERNAL_API_PATH', kplus.EnvValue.fromValue(`http://${backendService.name}:{backendPort}`));
frontendEnvironment?.addVariable('RAZZLE_INTERNAL_API_PATH', kplus.EnvValue.fromValue(`http://${backendService.name}:${backendPort}`));
}

// Deployment
Expand Down

0 comments on commit 89f6fe1

Please sign in to comment.