8 lines
163 B
Makefile
8 lines
163 B
Makefile
.PHONY: run-local
|
|
run-local:
|
|
PGUSER=postgres \
|
|
PGHOST=localhost \
|
|
PGPASSWORD=foobarbaz \
|
|
PGDATABASE=postgres \
|
|
PGPORT=5432 \
|
|
node ./src/index.js
|