Skip to content

feat: Google FHIR Store Integration #135

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
7 changes: 6 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@ SESSION_SECRET=
# Optional: Medplum Integration
# Both MEDPLUM_CLIENT_ID and MEDPLUM_CLIENT_SECRET must be set to enable Medplum integration
MEDPLUM_CLIENT_ID=
MEDPLUM_CLIENT_SECRET=
MEDPLUM_CLIENT_SECRET=

# Optional: Google Cloud Healthcare API Configuration
# GOOGLE_APPLICATION_CREDENTIALS must be set to enable Google Cloud Healthcare API integration
GOOGLE_APPLICATION_CREDENTIALS=
PUBLIC_NEXT_GOOGLE_FHIR_STORE_URL=
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Env var name mismatch: code expects NEXT_PUBLIC_GOOGLE_FHIR_STORE_URL, but .env uses PUBLIC_NEXT_GOOGLE_FHIR_STORE_URL.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,4 @@ yarn-error.log*
next-env.d.ts

fly.toml
credentials.json
12 changes: 6 additions & 6 deletions next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import path from 'path';
import { NextConfig } from 'next';

const nextConfig: NextConfig = {
webpack: (config) => {
config.resolve.alias = {
...config.resolve.alias,
'@': path.resolve(__dirname, 'src'),
};
return config;
experimental: {
turbo: {
resolveAlias: {
'@': path.resolve(__dirname, 'src'),
}
}
},
};

Expand Down
Loading