https://github.com/z0rr0/enigma
A service to share private info using web
https://github.com/z0rr0/enigma
Last synced: 5 months ago
JSON representation
A service to share private info using web
- Host: GitHub
- URL: https://github.com/z0rr0/enigma
- Owner: z0rr0
- License: mit
- Created: 2018-11-10T20:38:47.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-04T08:31:33.000Z (over 7 years ago)
- Last Synced: 2025-10-13T13:12:21.052Z (9 months ago)
- Language: Go
- Homepage: https://enigma.lus.su
- Size: 98.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://godoc.org/github.com/z0rr0/enigma/pwgen) [](https://github.com/z0rr0/enigma/releases/latest) [](https://github.com/z0rr0/enigma/blob/master/LICENSE)
# Enigma
A service to share private info using web.
1. Send data + settings (optional password + TTL + number of sharing)
1. Get a link
1. Share a link
## Build
Dependencies:
```
got get github.com/gomodule/redigo/redis
```
Check and build
```bash
make install
```
For docker container
```bash
make docker
```
## Development
### Run
```bash
make start
make restart
make stop
```
### Docker usage for debugging
Redis server (for example custom persistent storage is "/tmp/redis")
```bash
docker run --name redis -v /tmp/redis:/data -v $PWD/docker:/usr/local/etc/redis -p 6379:6379 -d redis:alpine redis-server /usr/local/etc/redis/redis.conf
```
Redis client
```bash
docker run -it --link redis:redis --rm redis:alpine redis-cli -h redis -p 6379
```
## License
This source code is governed by a MIT license that can be found in the [LICENSE](https://github.com/z0rr0/enigma/blob/master/LICENSE) file.