[PR #52] [CLOSED] Create devcontainer.json #152

Closed
opened 2025-12-29 14:25:42 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/yusing/godoxy/pull/52
Author: @Jorge-Martin777
Created: 1/28/2025
Status: Closed

Base: v0.8Head: patch-1


📝 Commits (10+)

  • 35c0463 naive implementation of caddy like route rules, dependencies upgrade
  • 7fedd57 feat: Add optional StartEndpoint support for idle watcher
  • 577a536 remove unused old code
  • bc1702e refactoring: moved reverse_proxy to separate package to avoid import cycle
  • a98b2bb updated implementation of rules
  • abb0124 readme and next release update
  • 7fe03be fix: cert renewal failure cause scheduler stuck forver
  • 8bbb5d2 fix fields not being validated (introduced in 577a536), drop support of list string not starting with hyphen
  • b3c47e7 fix incorrect reload behaviors, further organize code
  • f906e04 fix access logger write on closed file after config reload

📊 Changes

242 files changed (+10287 additions, -2798 deletions)

View changed files

.devcontainer/devcontainer.json (+5 -0)
📝 .env.example (+29 -5)
📝 .gitignore (+4 -0)
📝 .trunk/trunk.yaml (+4 -4)
📝 .vscode/settings.example.json (+2 -2)
📝 Dockerfile (+9 -7)
📝 Makefile (+88 -36)
📝 README.md (+6 -2)
📝 README_CHT.md (+4 -2)
bun.lock (+120 -0)
📝 cmd/main.go (+33 -49)
cmd/main_production.go (+7 -0)
cmd/main_prof.go (+20 -0)
📝 go.mod (+24 -18)
📝 go.sum (+94 -29)
📝 internal/api/handler.go (+40 -35)
📝 internal/api/v1/auth/auth.go (+30 -111)
internal/api/v1/auth/oidc.go (+274 -0)
internal/api/v1/auth/oidc_test.go (+455 -0)
internal/api/v1/auth/provider.go (+13 -0)

...and 80 more files

📄 Description

#49 merged middleware


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/yusing/godoxy/pull/52 **Author:** [@Jorge-Martin777](https://github.com/Jorge-Martin777) **Created:** 1/28/2025 **Status:** ❌ Closed **Base:** `v0.8` ← **Head:** `patch-1` --- ### 📝 Commits (10+) - [`35c0463`](https://github.com/yusing/godoxy/commit/35c04638292dd68e260a5b5aa0d5a9548931d5a7) naive implementation of caddy like route rules, dependencies upgrade - [`7fedd57`](https://github.com/yusing/godoxy/commit/7fedd5729e65b6dc7a7804b3de170f46ef12363d) feat: Add optional StartEndpoint support for idle watcher - [`577a536`](https://github.com/yusing/godoxy/commit/577a5366e8830ce06907251b4f879edf32afe898) remove unused old code - [`bc1702e`](https://github.com/yusing/godoxy/commit/bc1702e6cf582988737a00aaec3b56a17171fd89) refactoring: moved reverse_proxy to separate package to avoid import cycle - [`a98b2bb`](https://github.com/yusing/godoxy/commit/a98b2bb71acac6f1283fb0f0a739c18da7e545ad) updated implementation of rules - [`abb0124`](https://github.com/yusing/godoxy/commit/abb01240116905eefdb133e368137c14e13445b6) readme and next release update - [`7fe03be`](https://github.com/yusing/godoxy/commit/7fe03be73f7fbd2a58ce958b24f14072d33fd171) fix: cert renewal failure cause scheduler stuck forver - [`8bbb5d2`](https://github.com/yusing/godoxy/commit/8bbb5d2e091a675d91808100393da6e0a75cd633) fix fields not being validated (introduced in 577a536), drop support of list string not starting with hyphen - [`b3c47e7`](https://github.com/yusing/godoxy/commit/b3c47e759f78c2f9485feebef4dfd4acf6b6844e) fix incorrect reload behaviors, further organize code - [`f906e04`](https://github.com/yusing/godoxy/commit/f906e04581ef26962ba240c3b8272949aeb79225) fix access logger write on closed file after config reload ### 📊 Changes **242 files changed** (+10287 additions, -2798 deletions) <details> <summary>View changed files</summary> ➕ `.devcontainer/devcontainer.json` (+5 -0) 📝 `.env.example` (+29 -5) 📝 `.gitignore` (+4 -0) 📝 `.trunk/trunk.yaml` (+4 -4) 📝 `.vscode/settings.example.json` (+2 -2) 📝 `Dockerfile` (+9 -7) 📝 `Makefile` (+88 -36) 📝 `README.md` (+6 -2) 📝 `README_CHT.md` (+4 -2) ➕ `bun.lock` (+120 -0) 📝 `cmd/main.go` (+33 -49) ➕ `cmd/main_production.go` (+7 -0) ➕ `cmd/main_prof.go` (+20 -0) 📝 `go.mod` (+24 -18) 📝 `go.sum` (+94 -29) 📝 `internal/api/handler.go` (+40 -35) 📝 `internal/api/v1/auth/auth.go` (+30 -111) ➕ `internal/api/v1/auth/oidc.go` (+274 -0) ➕ `internal/api/v1/auth/oidc_test.go` (+455 -0) ➕ `internal/api/v1/auth/provider.go` (+13 -0) _...and 80 more files_ </details> ### 📄 Description #49 merged middleware --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 14:25:42 +01:00
adam closed this issue 2025-12-29 14:25:43 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/godoxy-yusing#152