-
Notifications
You must be signed in to change notification settings - Fork 0
Add Actuator with health/info and update Dockerfile #61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| name: Qodana | ||
| on: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| push: | ||
| branches: # Specify your branches here | ||
| - main # The 'main' branch | ||
| - 'releases/*' # The release branches | ||
|
|
||
| jobs: | ||
| qodana: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: write | ||
| pull-requests: write | ||
| checks: write | ||
| steps: | ||
| - uses: actions/checkout@v3 | ||
| with: | ||
| ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit | ||
| fetch-depth: 0 # a full history is required for pull request analysis | ||
| - name: 'Qodana Scan' | ||
| uses: JetBrains/qodana-action@v2025.1 | ||
| with: | ||
| pr-mode: false | ||
| env: | ||
| QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} | ||
| QODANA_ENDPOINT: 'https://qodana.cloud' |
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1,10 +1,14 @@ | ||||||||
| spring.application.name=cashu-gateway-spring | ||||||||
| server.port=${cashu_gateway_port:8080} | ||||||||
| server.port= | ||||||||
|
|
||||||||
| #spring.datasource.url=jdbc:postgresql://dbserver/gateway | ||||||||
| spring.datasource.url=jdbc:postgresql://localhost:5432/cashu-gateway | ||||||||
| spring.datasource.url= | ||||||||
|
||||||||
| spring.datasource.url= | |
| spring.datasource.url=${SPRING_DATASOURCE_URL:jdbc:postgresql://localhost:5432/gateway} |
Copilot
AI
Sep 1, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Setting configuration properties to empty values is problematic. These properties should either have default values or use Spring's placeholder syntax with defaults (e.g., ${SERVER_PORT:8080}). Empty values will likely cause application startup failures.
| spring.datasource.username= | |
| spring.datasource.password= | |
| spring.datasource.password=${SPRING_DATASOURCE_PASSWORD:} |
Copilot
AI
Sep 1, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Setting configuration properties to empty values is problematic. These properties should either have default values or use Spring's placeholder syntax with defaults (e.g., ${SERVER_PORT:8080}). Empty values will likely cause application startup failures.
| server.address= | |
| server.address=${SERVER_ADDRESS:127.0.0.1} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Setting configuration properties to empty values is problematic. These properties should either have default values or use Spring's placeholder syntax with defaults (e.g.,
${SERVER_PORT:8080}). Empty values will likely cause application startup failures.