Skip to content

cipherbin/cipher-bin-server

Repository files navigation

cipher bin logo

Cipherbin Server

cipher bin logo cipher bin logo cipher bin logo License


Source code for the server, if you are looking for the client side React app go here. If you are looking for the CLI app go here.

Setup

  1. Create postgres db

    createdb cipher_bin_dev
    
  2. cp env.example.sh env.sh

  3. Update variables in env.sh

  4. make migrate

Development

Clone repo and run:

go mod download

Build it:

make build

Run it:

./cipherbin

Or for quicker iterations build and run in one step:

make run