Command Line Utility for exporting data from Ente
You can either download the binary from the release page or build it yourself.
go build -o "bin/ente" main.go
Run the help command to see all available commands.
ente --help
If you wish, you can add multiple accounts (your own and that of your family members) and export all data using this tool.
ente account add
ente account list
ente account update --email [email protected] --dir ~/photos
ente export
If you fancy Docker, you can also run the CLI within a container.
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
docker run -it --rm ente:latest ls
Run the release script to build the binary and run it.
./release.sh