Skip to content
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

Update HAPI FHIR healthcheck command and other minor changes #79

Merged
merged 3 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,5 @@ To generate the swagger.json file for this application, run the following comman
```bash
yarn next-swagger-doc-cli next-swagger-doc.json
```

Once generated, you can view the API Swagger documentation by navigating to `/api/docs` in your browser.
5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,11 @@ services:
- hapi.fhir.bulk_export_enabled=true
- hapi.fhir.ips_enabled=true
healthcheck:
test: ['CMD', 'curl', '-f', 'http://localhost:8080']
test: /bin/wget --no-verbose --tries=1 --spider http://localhost:8080/actuator/health
interval: 30s
timeout: 10s
retries: 3
retries: 5
start_period: 2m

volumes:
postgres_data:
Expand Down
5 changes: 3 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ import theme from './theme';
import './globals.css';

export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
title: 'SHLinks',
description:
'patient-centric solution for managing and sharing encrypted health records, offering granular control over data access to trusted clinicians',
};

export default function RootLayout({
Expand Down
Loading