11 lines
148 B
Bash
Executable File
11 lines
148 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export PGHOST=127.0.0.1
|
|
export PGUSER=postgres
|
|
export PGDATABASE=postgres
|
|
export PGPASSWORD=enter
|
|
export PGPORT=5432
|
|
|
|
node src/index.js
|
|
|