Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
go.work.sum
go.work.sum

# IDEs and editors
.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Dev with Docker & VSCode

```bash
git clone # git clone project
git clone # or gh repo clone Intrinsec/s3proxy
cd s3proxy
docker run --rm -p 4433:4433 -v $PWD:/app -it golang:1.23 bash
# In VSCode, use "Attach to Running Container..." option => select golang container => open /app folder
go run s3proxy/cmd/main.go --no-tls
```
```
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## Features
- **Automatic encryption** for all PUT requests before storage on S3
- **Transparent decryption** of GET requests when retrieving data from S3
- **Easy setup**: simply run the proxy and direct your HTTP requests through it.
- **Easy setup**: run the proxy and direct your HTTP requests through it.

## Usage (Docker)

Expand All @@ -21,4 +21,4 @@ helm ugprade --install s3proxy oci://ghcr.io/intrinsec/s3proxy/charts/s3proxy

## Contribution

[CONTRIBUTING](CONTRIBUTING.md)
[CONTRIBUTING](CONTRIBUTING.md)
Loading