質問編集履歴

2

コピペミスを修正

2022/09/01 14:03

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -1,7 +1,7 @@
1
1
  ### SupabaseのpostgreSQLに繋げたい
2
2
  [deno-postgres](https://deno.land/x/postgres@v0.16.1)の例に従ってパスワードやホストをそのまま書いていたところを.envを使って読み込む形に変更したいため[dotenv](https://deno.land/x/dotenv@v3.2.0)を使用して
3
3
  ```typescript
4
- iimport { Client } from "https://deno.land/x/postgres@v0.16.1/mod.ts";
4
+ import { Client } from "https://deno.land/x/postgres@v0.16.1/mod.ts";
5
5
  import "https://deno.land/x/dotenv/load.ts";
6
6
 
7
7
  const client = new Client({

1

ミスをしていたところを修正

2022/09/01 13:11

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -5,7 +5,7 @@
5
5
  import "https://deno.land/x/dotenv/load.ts";
6
6
 
7
7
  const client = new Client({
8
- user: Deno.env.get,
8
+ user: Deno.env.get("DB_USER"),
9
9
  database: Deno.env.get("POSTGRES_DB"),
10
10
  hostname: Deno.env.get("DB_HOST"),
11
11
  password: Deno.env.get("DB_PASSWORD"),