Home
Softono

Rocketbase

Open source MIT Go
14
Stars
0
Forks
0
Issues
3
Watchers
1 year
Last Commit

 About Rocketbase

Rocketbase = Pocketbase + PostgreSQL + a lot of goodies

Platforms

Web Self-hosted

Languages

Go

Links

Need Help Installing Rocketbase?

We provide expert installation service for this software. Our team will install, configure, and secure Rocketbase on your server. plans start at just $30.

Rocketbase

View on GitHub

Rocketbase

Rocketbase = Pocketbase + PostgreSQL + a lot of goodies

Setup

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;

Credit

  • pocketbase for main codebase
  • postgresbase for adapting postgres