Skip to content

Commit c66a1fb

Browse files
committed
feat: Google FHIR Store Integration
1 parent 3de60fd commit c66a1fb

File tree

10 files changed

+748
-46
lines changed

10 files changed

+748
-46
lines changed

.env.example

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,9 @@ SESSION_SECRET=
55
# Optional: Medplum Integration
66
# Both MEDPLUM_CLIENT_ID and MEDPLUM_CLIENT_SECRET must be set to enable Medplum integration
77
MEDPLUM_CLIENT_ID=
8-
MEDPLUM_CLIENT_SECRET=
8+
MEDPLUM_CLIENT_SECRET=
9+
10+
# Optional: Google Cloud Healthcare API Configuration
11+
# GOOGLE_APPLICATION_CREDENTIALS must be set to enable Google Cloud Healthcare API integration
12+
GOOGLE_APPLICATION_CREDENTIALS=
13+
PUBLIC_NEXT_GOOGLE_FHIR_STORE_URL=

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,4 @@ yarn-error.log*
4141
next-env.d.ts
4242

4343
fly.toml
44+
credentials.json

next.config.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ import path from 'path';
22
import { NextConfig } from 'next';
33

44
const nextConfig: NextConfig = {
5-
webpack: (config) => {
6-
config.resolve.alias = {
7-
...config.resolve.alias,
8-
'@': path.resolve(__dirname, 'src'),
9-
};
10-
return config;
5+
experimental: {
6+
turbo: {
7+
resolveAlias: {
8+
'@': path.resolve(__dirname, 'src'),
9+
}
10+
}
1111
},
1212
};
1313

0 commit comments

Comments
 (0)