@@ -0,0 +1,20 @@
+# cli tool for exporting ente photos
+
+## Testing
+Run the release script to build the binary and run it.
+```shell
+ ./release.sh
+```
+or you can run the following command
+ go build -o "bin/ente-cli" main.go
+./bin/ente-cli --help
@@ -1 +0,0 @@
-host: https://api.ente.io
@@ -24,8 +24,8 @@ do
if [ "$OS" == "darwin" ]; then
BINARY_NAME="ente-cli-mac"
fi
-
+ # make bin directory if it doesn't exist
+ mkdir -p bin
# Build the binary and place it in the "bin" directory
go build -o "bin/$BINARY_NAME" main.go