-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore!(proxy): add proxy support for broker (#4)
* feat(dev/cli): initialize cli * refactor(dev/cli): refactoring flag system * refactor(dev/cli): simplify print usage * feat(dev/cli): add custom http handler for verifying * feat(dev/server): add isPublic property on variable * feat(dev/cli): add status code validation for response * feat(dev/cli): add status code validation for response * feat(dev/cli): finalize auth command * feat(dev/cli): create base command for get * refactor(dev/cli): formatting auth and add remove default value * feat(dev/cli): create http request for get token before spawning echo instance * feat(dev/cli): implementing webserver on get command * refactor(dev/cli): pruning one file * feat(dev/image): add docker compose * fix(dev/server): modify dockerfile * fix(dev/server): pruning dockerfile and modify csproj * feat(dev/cli): add message on command before sending file * feat(dev/cli): add feature to upload * feat(dev/cli): add progress while uploading * feat(dev/cli): add slider for progressbar * feat(dev/cli): add validator for duplicate file * feat(dev/cli): set response header for keep-alive * refactor(dev/cli): remove unnecessary file * feat(dev/cli): create new base command for send * refactor(dev/server): add tunnel metadata on verify * feat(dev/server): improving entrypoint for creating base random passowrd for salting certificate (soon) * refactor(dev/server): add environment on docker compose * fix(dev/cli): change parsing and add missing parameter * fix(dev/cli): fixing wrong pinning json * feat(dev/cli): add ssh tunnel generator args and implement on get variable * feat(dev/cli): make function to upload file fix(dev/cli): create command for gracefully kill tunnel after transfer * fix(dev/cli): fix error when ssh tunnel is up * feat(dev/cli): progress bar for uploading fix(dev/cli): make receiver only retrive one request from sender * refactor(dev/server): create new output for ssh proxy * feat(dev/cli): add proxy response on config fule * fix(dev/cli): proxy command support and use shell instead of binary execution
- Loading branch information
Showing
7 changed files
with
74 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,5 +10,6 @@ services: | |
PRIVATE_MODE_TOKEN: "" | ||
TUNNEL_HOST: 127.0.0.1 | ||
TUNNEL_PORT: 2222 | ||
TUNNEL_PROXY: "" | ||
ports: | ||
- 5000:5000 |