mirror of
https://github.com/ferdzo/fs.git
synced 2026-04-05 17:06:26 +00:00
Compare commits
4 Commits
ef12326975
...
v0.1.1
| Author | SHA1 | Date | |
|---|---|---|---|
| 237063d9fc | |||
| c2215d8589 | |||
| 82cb58dff1 | |||
| b592d6a2f0 |
13
README.md
13
README.md
@@ -9,19 +9,6 @@ Single binary, two modes:
|
|||||||
- `fs server` starts the server explicitly
|
- `fs server` starts the server explicitly
|
||||||
- `fs admin ...` runs admin CLI commands
|
- `fs admin ...` runs admin CLI commands
|
||||||
|
|
||||||
## Versioning and Releases
|
|
||||||
|
|
||||||
- Versioning follows SemVer tags: `vMAJOR.MINOR.PATCH` (example: `v0.4.2`).
|
|
||||||
- `fs version` shows build metadata (`version`, `commit`, `date`).
|
|
||||||
- Pushing a tag like `v0.4.2` triggers Docker image build/push via GitHub Actions.
|
|
||||||
- Published images: `ghcr.io/<owner>/<repo>:v0.4.2` and related semver tags.
|
|
||||||
|
|
||||||
Tag release example:
|
|
||||||
```bash
|
|
||||||
git tag v0.1.0
|
|
||||||
git push origin v0.1.0
|
|
||||||
```
|
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
Bucket operations:
|
Bucket operations:
|
||||||
|
|||||||
@@ -488,7 +488,7 @@ func (h *Handler) handlePutBucket(w http.ResponseWriter, r *http.Request) {
|
|||||||
writeMappedS3Error(w, r, err)
|
writeMappedS3Error(w, r, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
w.WriteHeader(http.StatusCreated)
|
w.WriteHeader(http.StatusOK)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *Handler) handleDeleteBucket(w http.ResponseWriter, r *http.Request) {
|
func (h *Handler) handleDeleteBucket(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|||||||
Reference in New Issue
Block a user