mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-05 23:33:08 +00:00
9 lines
191 B
Bash
9 lines
191 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
|
||
|
|
# Create separate databases for each nwaku node
|
||
|
|
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" <<-EOSQL
|
||
|
|
CREATE DATABASE nwaku1;
|
||
|
|
CREATE DATABASE nwaku2;
|
||
|
|
EOSQL
|