Rocketbase = Pocketbase + PostgreSQL + a lot of goodies
psql
CREATE
USER your_user WITH PASSWORD 'your_pass';
CREATE
DATABASE rocketbase;
CREATE
DATABASE rocketbase_logs;
GRANT ALL PRIVILEGES ON DATABASE
rocketbase TO your_user;
GRANT ALL PRIVILEGES ON DATABASE
rocketbase_logs TO your_user;
-- test
CREATE
DATABASE test_rocketbase;
CREATE
DATABASE test_rocketbase_logs;
GRANT ALL PRIVILEGES ON DATABASE
test_rocketbase TO your_user;
GRANT ALL PRIVILEGES ON DATABASE
test_rocketbase_logs TO your_user;
CREATE
DATABASE test_rocketbase_basic;
CREATE
DATABASE test_rocketbase_logs_basic;
GRANT ALL PRIVILEGES ON DATABASE
test_rocketbase_basic TO your_user;
GRANT ALL PRIVILEGES ON DATABASE
test_rocketbase_logs_basic TO your_user;
- pocketbase for main codebase
- postgresbase for adapting postgres