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.
-
Create postgres db
createdb cipher_bin_dev
-
cp env.example.sh env.sh
-
Update variables in env.sh
-
make migrate
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