ente/cli
Manav Rathi e97468180f git rm cli/config.yaml
This file is gitignored but it seems to be present in our repo.
2024-03-05 16:21:14 +05:30
..
cmd [cli] Bump version to 0.1.11 2024-03-05 12:31:25 +05:30
internal Move into cli/ 2024-03-01 12:39:01 +05:30
pkg [cli] Add command to decrypt auth export 2024-03-05 12:31:25 +05:30
utils Move into cli/ 2024-03-01 12:39:01 +05:30
.gitignore Move into cli/ 2024-03-01 12:39:01 +05:30
.goreleaser.yaml Move into cli/ 2024-03-01 12:39:01 +05:30
docker-compose.yml Move into cli/ 2024-03-01 12:39:01 +05:30
Dockerfile Move into cli/ 2024-03-01 12:39:01 +05:30
Dockerfile-x86 Move into cli/ 2024-03-01 12:39:01 +05:30
go.mod Move into cli/ 2024-03-01 12:39:01 +05:30
go.sum Move into cli/ 2024-03-01 12:39:01 +05:30
main.go Move into cli/ 2024-03-01 12:39:01 +05:30
README.md Move into cli/ 2024-03-01 12:39:01 +05:30
release.sh Move into cli/ 2024-03-01 12:39:01 +05:30

Command Line Utility for exporting data from Ente

Install

You can either download the binary from the release page or build it yourself.

Build from source

 go build -o "bin/ente" main.go

Getting Started

Run the help command to see all available commands.

ente --help

Accounts

If you wish, you can add multiple accounts (your own and that of your family members) and export all data using this tool.

Add an account
ente account add
List accounts
ente account list
Change export directory
ente account update --email email@domain.com --dir ~/photos 

Export

Start export
ente export

Docker

If you fancy Docker, you can also run the CLI within a container.

Configure

Modify the docker-compose.yml and add volume. cli-data volume is mandatory, you can add more volumes for your export directory.

Build the docker image

docker build -t ente:latest .

Start the container in detached mode

docker-compose up -d

exec into the container

docker-compose exec ente /bin/sh

Directly executing commands

docker run -it --rm ente:latest ls 

Releases

Run the release script to build the binary and run it.

./release.sh