From c508d49e20c42954193c7cc2081b617fcdc19b87 Mon Sep 17 00:00:00 2001 From: Nicco Date: Sun, 2 May 2021 14:40:06 +0200 Subject: [PATCH] Update README.md --- README.md | 44 ++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 42 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e73d9c5..3e1cd67 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,43 @@ -# cryptgeon +

+ +

-
Icons made by Freepik from www.flaticon.com
+## About? + +_cryptgeon_ is an secure, open source sharing note service inspired by [_PrivNote_](https://privnote.com) + +## Features + +- view and time constrains +- in memory, no persistence +- in browser encryption → server cannot decrypt contents + + +## How does it work? + +each note has a 512bit generated id that is used to retrieve the note. data is stored in memory and never persisted to disk. + +## Deployment + +Docker is the easiest way. + +```yaml +# docker-compose.yml + +version: '3.7' + +services: + memcached: + image: memcached:1-alpine + entrypoint: memcached -m 128 + + app: + image: cupcakearmy/cryptgeon:latest + ports: + - 80:5000 + +``` + +###### Attributions + +Icons made by freepik from www.flaticon.com