Skip to content

A service to manage secrets for your awesome projects.

License

Notifications You must be signed in to change notification settings

juancwu/konbini

Repository files navigation

Konbini

A service to manage secrets for your awesome projects. You can use any software like curl or bruno to access the service because its like any other REST API.

Try Mi CLI, the official CLI for Konbini.

Feel free to fork/clone this repository and host the service on your own server. Read the documentation for more help.

Table of Content

Database Setup

Make sure you have PostgreSQL (code works with v14) installed.

After installing POstgreSQL, run the followin commands to create the database and user.

Change user to postgres and connect to database server:

sudo -i -u postgres
psql

Crate a new database named konbini:

CREATE DATABASE konbini;

Create a new user named cashier:

CREATE USER cashier WITH PASSWORD 'mypassword';

Grant privileges to the user cashier:

GRANT ALL PRIVILEGES ON DATABASE konbini TO cashier;

About

A service to manage secrets for your awesome projects.

Resources

License

Stars

Watchers

Forks

Packages

No packages published