cryptgeon/README.md

180 lines
8.0 KiB
Markdown
Raw Normal View History

2021-05-02 14:40:06 +02:00
<p align="center">
2021-11-23 15:43:57 +01:00
<img src="./design/Github.png" alt="logo">
2021-05-02 14:40:06 +02:00
</p>
2021-05-01 12:40:02 +02:00
2021-11-23 15:43:57 +01:00
<a href="https://discord.gg/nuby6RnxZt">
<img alt="discord" src="https://img.shields.io/discord/252403122348097536?style=for-the-badge" />
<img alt="docker pulls" src="https://img.shields.io/docker/pulls/cupcakearmy/cryptgeon?style=for-the-badge" />
<img alt="Docker image size badge" src="https://img.shields.io/docker/image-size/cupcakearmy/cryptgeon?style=for-the-badge" />
<img alt="Latest version" src="https://img.shields.io/github/v/release/cupcakearmy/cryptgeon?style=for-the-badge" />
</a>
2021-05-02 16:02:57 +02:00
2022-07-08 10:45:40 +02:00
<br/><br/>
2022-03-02 16:32:36 +01:00
<a href="https://www.producthunt.com/posts/cryptgeon?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-cryptgeon" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=295189&theme=light" alt="Cryptgeon - Securely share self-destructing notes | Product Hunt" height="50" /></a>
<a href=""><img src="./.github/lokalise.png" height="50">
2022-07-08 10:45:40 +02:00
<br/><br/>
2021-06-01 12:23:08 +02:00
EN | [简体中文](README_zh-CN.md)
2021-05-02 14:40:06 +02:00
## About?
2021-12-22 14:54:02 +01:00
_cryptgeon_ is a secure, open source sharing note or file service inspired by [_PrivNote_](https://privnote.com)
2021-05-02 14:40:06 +02:00
2022-03-02 16:32:36 +01:00
> 🌍 If you want to translate the project feel free to reach out to me.
>
> Thanks to [Lokalise](https://lokalise.com/) for providing free access to their platform.
2022-10-24 16:35:54 +02:00
## Live Service / Demo
2021-05-02 15:24:19 +02:00
2022-10-24 16:35:54 +02:00
Check out the live service / demo and see for yourself [cryptgeon.org](https://cryptgeon.org)
2021-05-02 15:24:19 +02:00
2021-05-02 14:40:06 +02:00
## Features
2021-05-03 12:21:44 +02:00
- server cannot decrypt contents due to client side encryption
2021-12-22 14:54:02 +01:00
- view or time constraints
2021-05-02 14:40:06 +02:00
- in memory, no persistence
2021-05-02 16:57:56 +02:00
- obligatory dark mode support
2021-05-02 14:40:06 +02:00
## How does it work?
2021-12-30 22:36:28 +01:00
each note has a generated <code>id (256bit)</code> and <code>key 256(bit)</code>. The
<code>id</code>
is used to save & retrieve the note. the note is then encrypted with aes in gcm mode on the
client side with the <code>key</code> and then sent to the server. data is stored in memory and
never persisted to disk. the server never sees the encryption key and cannot decrypt the contents
of the notes even if it tried to.
2021-05-02 14:40:06 +02:00
2021-05-02 15:12:04 +02:00
## Screenshot
2021-05-02 17:12:12 +02:00
![screenshot](./design/Screens.png)
2021-05-02 15:12:04 +02:00
## Environment Variables
| Variable | Default | Description |
| ------------------ | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `REDIS` | `redis://redis/` | Redis URL to connect to. [According to format](https://docs.rs/redis/latest/redis/#connection-parameters) |
| `SIZE_LIMIT` | `1 KiB` | Max size for body. Accepted values according to [byte-unit](https://docs.rs/byte-unit/). <br> `512 MiB` is the maximum allowed. <br> The frontend will show that number including the ~35% encoding overhead. |
| `MAX_VIEWS` | `100` | Maximal number of views. |
| `MAX_EXPIRATION` | `360` | Maximal expiration in minutes. |
| `ALLOW_ADVANCED` | `true` | Allow custom configuration. If set to `false` all notes will be one view only. |
| `VERBOSITY` | `warn` | Verbosity level for the backend. [Possible values](https://docs.rs/env_logger/latest/env_logger/#enabling-logging) are: `error`, `warn`, `info`, `debug`, `trace` |
| `THEME_IMAGE` | `""` | Custom image for replacing the logo. Must be publicly reachable |
| `THEME_TEXT` | `""` | Custom text for replacing the description below the logo |
| `THEME_PAGE_TITLE` | `""` | Custom text the page title |
| `THEME_FAVICON` | `""` | Custom url for the favicon. Must be publicly reachable |
2021-05-02 14:40:06 +02:00
## Deployment
2021-09-01 11:10:02 +02:00
`https` is required otherwise browsers will not support the cryptographic functions.
2021-12-16 13:54:15 +01:00
### Docker
2021-05-02 16:02:57 +02:00
Docker is the easiest way. There is the [official image here](https://hub.docker.com/r/cupcakearmy/cryptgeon).
2021-05-02 14:40:06 +02:00
```yaml
# docker-compose.yml
version: '3.8'
2021-05-02 14:40:06 +02:00
services:
redis:
image: redis:7-alpine
2022-10-24 16:11:50 +02:00
# Set a size limit. See link below on how to customise.
# https://redis.io/docs/manual/eviction/
command: redis-server --maxmemory 1gb --maxmemory-policy allkeys-lru
2021-05-02 14:40:06 +02:00
app:
image: cupcakearmy/cryptgeon:latest
2021-05-04 19:30:25 +02:00
depends_on:
- redis
2021-12-22 14:54:02 +01:00
environment:
2022-10-24 16:11:50 +02:00
# Size limit for a single note.
SIZE_LIMIT: 4 MiB
2021-05-02 14:40:06 +02:00
ports:
2023-01-13 19:36:26 +01:00
- 80:8000
2021-05-02 14:40:06 +02:00
```
2021-12-16 13:54:15 +01:00
### NGINX Proxy
2021-12-20 17:42:35 +01:00
2021-12-16 13:54:15 +01:00
See the [examples/nginx](https://github.com/cupcakearmy/cryptgeon/tree/main/examples/nginx) folder. There an example with a simple proxy, and one with https. You need to specify the server names and certificates.
### Traefik 2
2022-07-26 15:49:06 +02:00
See the [examples/traefik](https://github.com/cupcakearmy/cryptgeon/tree/main/examples/traefik) folder.
2021-12-16 13:54:15 +01:00
2022-07-26 15:49:06 +02:00
### Scratch
2021-12-16 13:54:15 +01:00
2022-07-26 15:49:06 +02:00
See the [examples/scratch](https://github.com/cupcakearmy/cryptgeon/tree/main/examples/scratch) folder. There you'll find a guide how to setup a server and install cryptgeon from scratch.
2021-12-16 13:54:15 +01:00
2022-07-26 15:49:06 +02:00
### Synology
2021-12-16 13:54:15 +01:00
2022-07-26 15:49:06 +02:00
There is a [guide](https://mariushosting.com/how-to-install-cryptgeon-on-your-synology-nas/) you can follow.
2021-12-20 17:42:35 +01:00
2022-10-24 16:35:54 +02:00
### YouTube Guides
2023-05-13 08:41:05 +02:00
- English by [Webnestify](https://www.youtube.com/watch?v=XAyD42I7wyI)
2022-10-24 16:35:54 +02:00
- English by [DB Tech](https://www.youtube.com/watch?v=S0jx7wpOfNM) [Previous Video](https://www.youtube.com/watch?v=JhpIatD06vE)
- German by [ApfelCast](https://www.youtube.com/watch?v=84ZMbE9AkHg)
2021-05-02 15:52:03 +02:00
## Development
2022-04-12 09:12:40 +02:00
**Requirements**
2021-05-02 15:52:03 +02:00
2022-04-12 09:12:40 +02:00
- `pnpm`: `>=6`
- `node`: `>=16`
2022-04-12 09:12:40 +02:00
- `rust`: edition `2021`
**Install**
```bash
pnpm install
pnpm --prefix frontend install
# Also you need cargo watch if you don't already have it installed.
# https://lib.rs/crates/cargo-watch
cargo install cargo-watch
```
**Run**
Make sure you have docker running.
```bash
pnpm run dev
```
Running `pnpm run dev` in the root folder will start the following things:
2021-05-02 15:52:03 +02:00
- redis docker container
- rust backend
- client
2021-05-02 15:52:03 +02:00
2021-12-20 18:14:59 +01:00
You can see the app under [localhost:1234](http://localhost:1234).
2021-05-02 15:52:03 +02:00
## Tests
Tests are end to end tests written with Playwright.
```sh
pnpm run test:prepare
docker compose up redis -d
pnpm run test:server
# In another terminal.
# Use the test or test:local script. The local version only runs in one browser for quicker development.
pnpm run test:local
```
2022-09-10 13:13:09 +02:00
## Security
Please refer to the security section [here](./SECURITY.md).
2021-05-02 14:40:06 +02:00
###### Attributions
- Test data:
- Text for tests [Nietzsche Ipsum](https://nietzsche-ipsum.com/)
- [AES Paper](https://www.cs.miami.edu/home/burt/learning/Csc688.012/rijndael/rijndael_doc_V2.pdf)
- [Unsplash Pictures](https://unsplash.com/)
- Loading animation by [Nikhil Krishnan](https://codepen.io/nikhil8krishnan/pen/rVoXJa)
- Icons made by <a href="https://www.freepik.com" title="Freepik">freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a>