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
- Host: GitHub
- URL: https://github.com/cipherbin/cipher-bin-server
- Owner: cipherbin
- License: mit
- Created: 2019-11-29T22:31:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-15T15:44:56.000Z (over 2 years ago)
- Last Synced: 2026-02-01T15:55:19.624Z (5 months ago)
- Topics: encryption, golang, hacktoberfest, messaging, web-server
- Language: Go
- Homepage: https://cipherb.in
- Size: 97.7 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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
```