Skip to content
This repository has been archived by the owner on Jun 13, 2022. It is now read-only.

Latest commit

 

History

History
49 lines (37 loc) · 740 Bytes

README.md

File metadata and controls

49 lines (37 loc) · 740 Bytes

denote

Self-destructive (one-time) notes.

Use POST form to set note and GET to get it. Sqlite for backend, note encryption with AES-GCM.

Schema

POST form:

  • value
  • view_limit (default: 1)
  • duration_limit (default: 24h, range: 1m..7*24h)

Installation

$ make
$ make install

or

$ make docker

Usage

Usage of denote:
  -V	Print version and exit

Example

To run localhost:

$ URL="http://127.0.0.1:8000" denote

To run in docker:

$ docker-compose up -d

Caveats

If you need frontend, setenv ENABLE_STATIC=1.

Friends