An open API service indexing awesome lists of open source software.

https://github.com/cipherbin/cipher-bin-server

Free & open source message encryption service
https://github.com/cipherbin/cipher-bin-server

encryption golang hacktoberfest messaging web-server

Last synced: 3 months ago
JSON representation

Free & open source message encryption service

Awesome Lists containing this project

README

          


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](https://github.com/cipherbin/cipher-bin-client). If you are looking for the CLI app [go here](https://github.com/cipherbin/cipher-bin-cli).

## Setup
0. Create postgres db
```
createdb cipher_bin_dev
```

1. `cp env.example.sh env.sh`

2. Update variables in env.sh

3. `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
```