kanjo (japanese word) is a web application that allows to write the emotion journal and assess your feelings in your daily life.
To use Kanjo, you need to use Docker Engine. Then, start it with this one-line command:
docker run -it -p 3000:3000 ghcr.io/tamdaz/kanjo:latestAlso, it is possible to setup Kanjo via the docker-compose.yml file.
services:
kanjo:
image: ghcr.io/tamdaz/kanjo:0.1.0
ports:
- "3000:3000"
volumes:
- kanjo_data:/app/data
environment:
DATABASE_URL: sqlite3:data/db.sqlite3
restart: unless-stopped
volumes:
kanjo_data:
driver: localOnce the container is started, go to your browser http://localhost:3000
Kanjo is under MIT license. See LICENSE for more details.
Any contributions are welcome.