this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add missing dotenv import

alice 6580d046 d4fcd325

+9 -4
+9 -4
packages/backend/src/migrations/002-postgresCreate.ts
··· 1 - import pg from 'pg' 2 - const { Client } = pg 1 + import 'dotenv/config'; 2 + import pg from 'pg'; 3 + 4 + const { Client } = pg; 3 5 4 6 const client = new Client({ 5 7 connectionString: process.env.DATABASE_URL!, ··· 29 31 `); 30 32 } 31 33 32 - createTables().catch((e: unknown) => { console.error(e); }).finally(() => void client.end()); 33 - 34 + createTables() 35 + .catch((e: unknown) => { 36 + console.error(e); 37 + }) 38 + .finally(() => void client.end());