mirror of
https://github.com/chirpstack/chirpstack.git
synced 2024-12-18 20:57:55 +00:00
8 lines
202 B
Bash
Executable File
8 lines
202 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" <<-EOSQL
|
|
create role chirpstack with login password 'chirpstack';
|
|
create database chirpstack with owner chirpstack;
|
|
EOSQL
|