feat: Add ChirpStack
This commit is contained in:
parent
d8076f401b
commit
f260727d70
81 changed files with 11130 additions and 1 deletions
7
configuration/postgresql/initdb/001-chirpstack_extensions.sh
Executable file
7
configuration/postgresql/initdb/001-chirpstack_extensions.sh
Executable file
|
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname="$POSTGRES_DB" <<-EOSQL
|
||||
create extension pg_trgm;
|
||||
create extension hstore;
|
||||
EOSQL
|
||||
Reference in a new issue