Fully open source, End to End Encrypted alternative to Google Photos and Apple Photos
Find a file
2023-10-25 18:09:28 +05:30
.github/workflows Install Syft in CI build machine 2023-10-25 18:09:17 +05:30
cmd Fix path 2023-10-25 17:56:53 +05:30
internal imporve error 2023-10-24 12:03:51 +05:30
pkg Fixed bug in syncing on windows 2023-10-25 18:09:28 +05:30
utils Update documentation for docker 2023-10-18 17:52:41 +05:30
.gitignore Init goreleaser 2023-10-21 14:28:19 +05:30
.goreleaser.yaml Fix path 2023-10-25 17:56:53 +05:30
config.yaml Add readme 2023-09-14 13:03:20 +05:30
docker-compose.yml Update documentation for docker 2023-10-18 17:52:41 +05:30
Dockerfile Clean up Dockerfile 2023-10-18 12:17:30 +05:30
Dockerfile-x86 Add Dockerfile-x86 for X86 2023-10-18 17:53:43 +05:30
go.mod Update module name 2023-10-21 14:56:13 +05:30
go.sum tidy go mod 2023-10-21 14:30:37 +05:30
main.go Rename ente-cli to ente 2023-10-25 17:22:22 +05:30
README.md Update README.md 2023-10-25 17:24:36 +05:30
release.sh Rename ente-cli to ente 2023-10-25 17:22:22 +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