Go to file
leafus 3addae5a14
Some checks failed
Release Version / build (push) Failing after 49s
Update .gitea/workflows/build.yaml
2024-09-29 03:51:20 +02:00
.gitea/workflows Update .gitea/workflows/build.yaml 2024-09-29 03:51:20 +02:00
.gitignore Add .gitignore 2024-09-29 02:18:14 +02:00
go.mod init 2024-09-29 02:17:05 +02:00
go.sum init 2024-09-29 02:17:05 +02:00
LICENSE init 2024-09-29 02:17:05 +02:00
main.go init 2024-09-29 02:17:05 +02:00
README.md init 2024-09-29 02:17:05 +02:00

S3 Client

This is a simple command-line tool to interact with an S3-compatible storage service. It allows you to upload, list files from an S3 bucket.

Prerequisites

  • Go (1.23.1 or later)

Installation

  1. Clone the repository:

    git clone https://git.fluffy.pw/leafus/s3-client
    
  2. Go to the project directory:

    cd s3-client
    
  3. Build the binary:

    go build -o s3-client
    

Configuration

Create a configuration file s3config.toml with the following content:

access_key_id = "your_access_key_id"
secret_access_key = "your_secret_access_key"
region = "your_region"
bucket = "your_bucket_name"
endpoint = "your_endpoint_url"

returnurl = "your_return_url"

Usage

Upload a file

./s3-client -file "path/to/your/file" [optional] -directory "/exampledir"

List files

./s3-client -list

Help message

./s3-client -help