File tree Expand file tree Collapse file tree 2 files changed +15
-8
lines changed
Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 44 "scripts" : {
55 "start" : " tsx ./src/index.ts" ,
66 "lint" : " biome check . --write" ,
7- "lint-check" : " biome check ."
7+ "lint-check" : " biome check ." ,
8+ "type-check" : " tsc --noEmit"
89 },
910 "dependencies" : {
1011 "@dotkomonline/db" : " workspace:*" ,
Original file line number Diff line number Diff line change 11import { createEnvironment , variable } from "@dotkomonline/environment"
22
3- export const env = createEnvironment ( {
4- DATABASE_URL : variable ,
5- AWS_REGION : variable ,
6- MANAGEMENT_OAUTH_CLIENT_ID : variable ,
7- MANAGEMENT_OAUTH_CLIENT_SECRET : variable ,
8- OAUTH_ISSUER : variable ,
9- } )
3+ export const env = createEnvironment (
4+ {
5+ DATABASE_URL : variable ,
6+ AWS_REGION : variable ,
7+ MANAGEMENT_OAUTH_CLIENT_ID : variable ,
8+ MANAGEMENT_OAUTH_CLIENT_SECRET : variable ,
9+ OAUTH_ISSUER : variable ,
10+ } ,
11+ {
12+ env : process . env ,
13+ skipValidation : false ,
14+ }
15+ )
You can’t perform that action at this time.
0 commit comments