feat: Add ChirpStack

This commit is contained in:
Tibo De Peuter 2025-12-20 18:31:59 +01:00
parent d8076f401b
commit f260727d70
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
81 changed files with 11130 additions and 1 deletions

View 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