β‘ Live demo https://demo.canutin.com
(data will be wiped frequently)
Open in browser
or by visiting http://localhost:42069
.Canutin hasn't paid the app-store tax that Microsoft and Apple require to notarize the app, this means that when you first run it you'll see a warning that it's from an "unidentified developer". Follow these steps to get the app running:
More info
and then Run anyway
.Canutin.app cannot be opened because the developer cannont be verified
, click Cancel
, then head over to System Preferences > Security & Privacy
and click Open Anyway
.You might need to do this step again in the future when you update the app.
Run the command below, then visit http://localhost:42069.
docker run -d \
--name canutin \
-p 42069:42069 \
-v ./vaults:/canutin/vaults \
--restart=unless-stopped \
ghcr.io/fmaclen/canutin:latest
Or create a docker-compose.yml
file:
version: '3'
services:
canutin:
image: ghcr.io/fmaclen/canutin:latest
container_name: canutin
ports:
- "42069:42069"
volumes:
- ./vaults:/canutin/vaults
restart: unless-stopped
# Optional environment variables
environment:
HOST: "0.0.0.0"
PORT: "42069"
SHOULD_CHECK_VAULT: "true"
DATABASE_URL: "file:../vaults/Canutin.vault"
And then run docker compose up -d
.
There's multiple ways to get data into Canutin, these are available from the Add or update data page.
Can I use Canutin on my phone? At the moment Canutin only runs on desktop operating systems, though a mobile app is in the roadmap.
How do I share data between devices? The simplest way to do this is to use a cloud storage service like Dropbox or Google Drive. You can then set up Canutin to use that folder as the vault location. This way you can access the same data from multiple devices.
How do I backup my data? All of the data Canutin interacts with is stored in a single file (referred to as a Vault file). You can backup this file the same way you would any other file on your computer.
What about security? In it's current version Canutin does not encrypt your data though that is in the roadmap. Canutin is as secure as your computer is, anyone who has access to your device will be able to access the data in the vaults stored in such device. By default Canutin's server is only accessible from your computer's browser but it's possible to expose it to your local network and/or the public Internet if your networking settings allow it.
What about privacy? The data is stored locally in your device. Canutin does not collect any data about you or your usage of the app and does not contain any kind of telemetry or analytics.
How do you make money? We don't. Canutin is a hobby project at the moment.
If you are interested in extending what Canutin can do, take a look at the development documentation.
Here's ways in which you can contribute: