This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / scripts / dev.sh
259 B 13 lines
1#!/bin/bash 2 3# Source the Postgres setup script 4source ./scripts/setup-postgres.sh 5 6# Trap SIGINT and SIGTERM to cleanup on exit 7trap cleanup_postgres SIGINT SIGTERM 8 9# Run the dev command 10npm run dev:inner 11 12# Cleanup after dev command exits 13cleanup_postgres