ente/README.md
2023-09-25 14:19:03 +05:30

49 lines
675 B
Markdown

# cli tool for exporting data from ente.io
#### You can configure multiple accounts for export
### Getting Started
#### Accounts
* Add an account
```shell
ente-cli account add
```
* List accounts
```shell
ente-cli account list
```
## Testing
Run the release script to build the binary and run it.
```shell
./release.sh
```
or you can run the following command
```shell
go build -o "bin/ente-cli" main.go
```
```shell
./bin/ente-cli --help
```
## Docker
Build the docker image
```shell
docker build -t ente-cli:latest .
```
Run the commands using:
```shell
docker run -it --rm ente-cli:latest ./ente-cli --help
```