An end-to-end encrypted note sharing app with support for markdown and JavaScript-free environments. Built with SvelteKit, Redis and TailwindCSS.
- Modern UI
- End-to-end encryption
- No JavaScript required*
*Not true end-to-end encryption without JavaScript
There are many providers that offer free Redis instances, here are some of them:
For hosting, some viable options are Vercel and Cloudflare Pages.
The only environment variable required is REDIS_URL
, which should be set to the connection string of your Redis instance.
Example docker-compose.yml
:
services:
ephnote:
image: ghcr.io/edde746/ephnote:latest
ports:
- 3000:3000
environment:
- REDIS_URL=redis://redis:6379
redis:
image: redis:alpine