A decentralized event management and credentialing system built on atproto.
at main 375 B view raw
1-- Initialize databases for Acudo development 2-- This script runs when the PostgreSQL container is first created 3 4-- Create test database for running tests 5CREATE DATABASE acudo_test; 6 7-- Grant permissions to postgres user (already has superuser, but being explicit) 8GRANT ALL PRIVILEGES ON DATABASE acudo TO postgres; 9GRANT ALL PRIVILEGES ON DATABASE acudo_test TO postgres;