Skip to content

Commit

Permalink
Updated react app env and docker
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidOkulski committed Jan 7, 2025
1 parent 9478c6a commit 9a964df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/client/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const root = ReactDOM.createRoot(document.getElementById("root"));

root.render(
<React.StrictMode>
<SSOProvider idpHint="idir" backendURL="http://localhost:3000">
<SSOProvider idpHint="idir" backendURL={process.env.REACT_APP_SSO_URL}>
<App />
</SSOProvider>
</React.StrictMode>
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
db:
image: postgres:13
hostname: db
hostname: ${POSTGRES_DB}
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
Expand Down

0 comments on commit 9a964df

Please sign in to comment.