refacto: reorganize folder tree to split lora gateway stack from app

Those stack won't necessarily be on the same host, so they need to be
split
This commit is contained in:
Alexis Fourmaux 2026-05-08 12:17:03 +02:00
parent 31a1c14831
commit 851e8947bc
11 changed files with 9 additions and 11 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