Skip to content

Commit

Permalink
minor changes to test
Browse files Browse the repository at this point in the history
  • Loading branch information
James Crowley committed Nov 26, 2023
1 parent 4ba28d2 commit 75be05b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ RUN find packages \! -name "package.json" -mindepth 2 -maxdepth 2 -exec rm -rf {
FROM node:18 AS build

ARG BASE_URL="http://localhost:7007"
ARG FRONTEND_BASE_URL="http://localhost:7007"

WORKDIR /app
COPY --from=packages /app .
Expand Down
2 changes: 1 addition & 1 deletion app-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Backstage override configuration for your local development environment
app:
title: SourceFuse Backstage
baseUrl: ${BASE_URL}
baseUrl: ${FRONTEND_BASE_URL}

organization:
name: SourceFuse
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
INTEGRATION_GITHUB_PRIVATE_KEY: ${INTEGRATION_GITHUB_PRIVATE_KEY-secret}
SNYK_TOKEN: ${SNYK_TOKEN-secret}
BASE_URL: ${BASE_URL-http://localhost:7007}
ENABLE_GITHUB_SYNC: "true"
FRONTEND_BASE_URL: ${FRONTEND_BASE_URL-http://localhost:7007}
ports:
- '7007:7007'
networks:
Expand Down

0 comments on commit 75be05b

Please sign in to comment.