6 Commits

Author SHA1 Message Date
Andrei Alexandru
df9a134e9b Updated GitHub Actions workflow for Go tests and coverage 2025-11-02 12:01:20 +02:00
Andrei Alexandru
b8a4d8d8da Correct Go workflow path to NewProxy module
- Fixed GitHub Actions CI workflow by setting the working directory to ./NewProxy
- Added module caching to speed up dependency installation
- Replaced 'go mod download' with 'go mod tidy' for automatic dependency resolution
- Ensured all test and vet commands run inside the correct Go module directory
- Resolved 'no modules specified' error during CI runs
2025-11-02 11:13:20 +02:00
Andrei Alexandru
20948a5d45 Added GitHub Actions CI workflow and initial unit tests
- Added .github/workflows/go-test.yml for automated CI testing using GitHub Actions
- Implemented unit tests for:
  • utils/release.go (FetchLatestRelease)
  • routes/builds.go (buildsHandler)
  • routes/status.go (statusHandler)
- Ensured tests run with go test ./... -v -cover
- Included go vet and gofmt checks in the CI pipeline
- Improved project reliability and continuous integration setup
2025-11-02 11:10:06 +02:00
Andrei Alexandru
2bf7c84e3b detailed project description and setup instructions for NewProxy Server
- Added README detailing project overview, setup, and usage
- Described proxy features (file forwarding, release tracking, download stats)
- Included build and run instructions for both local and Docker environments
- Specified Go version requirements and dependencies
- Added credits and links to core libraries
2025-10-20 16:48:34 +03:00
Andrei Alexandru
da38f036ed new proxy implementation with Gin framework
- Created a new proxy structure under NewProxy/ using the Gin web framework.
- Added main entry point (main.go) to register and run routes.
- Implemented new route handlers for:
 > Status — monitors active downloads and total data transferred.
 > Forward — handles proxy forwarding logic.
 > Builds — manages build-related requests.
2025-10-20 04:14:45 +03:00
Andrei Alexandru
e9f9211e39 Added Proxy-PPC 2025-10-12 03:04:43 +03:00