-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: Added more documentation and clean code. #20
Merged
thegodenage
merged 11 commits into
thegodenage:main
from
werniq:feature/docs-and-clean-code
Oct 22, 2024
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
a4e70ff
docs: Added more documentation to functions and objects in the project
werniq bb9b964
fix: Repaired dockerfile and added commands in Makefile to build/push…
werniq 14cda9c
feat: Added Taskfile for the owner to compare it with Makefile
werniq 097300a
fix: Removed redundant clock package, changed all calls to time.Now()
werniq 292d214
Completely removed clock package
werniq 4f24899
refactor: Adding more descriptive error messages, and renaming vars
werniq 06ba9e1
Made visualizer and proxy server ports as flags, to allow user specif…
werniq 317e5c7
Handling errors during certificate loading.
werniq 9cb3ba9
Fix: removed redundant commans at the end of line.
werniq 1ec0180
Handlded error in proxy/main.go
werniq 617c0bd
Merge pull request #1 from werniq/feature/documentation
werniq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
version: '3' | ||
|
||
tasks: | ||
certs_windows: | ||
cmds: | ||
- mkdir -p "./cmd/proxy/.cert" | ||
- openssl ecparam -out ./cmd/proxy/.cert/ca.key -name prime256v1 -genkey | ||
- openssl req -new -sha256 -key ./cmd/proxy/.cert/ca.key -out ./cmd/proxy/.cert/ca.csr | ||
- openssl x509 -req -sha256 -days 3650 -in ./cmd/proxy/.cert/ca.csr -signkey ./cmd/proxy/.cert/ca.key -out ./cmd/proxy/.cert/ca.crt | ||
- openssl ecparam -out ./cmd/proxy/.cert/server.key -name prime256v1 -genkey | ||
- openssl req -new -sha256 -key ./cmd/proxy/.cert/server.key -out ./cmd/proxy/.cert/server.csr | ||
- openssl x509 -req -in ./cmd/proxy/.cert/server.csr -CA ./cmd/proxy/.cert/ca.crt -CAkey ./cmd/proxy/.cert/ca.key -CAcreateserial -out ./cmd/proxy/.cert/server.crt -days 3650 -sha256 | ||
- openssl x509 -in ./cmd/proxy/.cert/server.crt -text -noout | ||
|
||
certs: | ||
cmds: | ||
- mkdir -p "./cmd/proxy/.cert" | ||
- openssl ecparam -out ./cmd/proxy/.cert/ca.key -name prime256v1 -genkey | ||
- openssl req -new -sha256 -key ./cmd/proxy/.cert/ca.key -out ./cmd/proxy/.cert/ca.csr | ||
- openssl x509 -req -sha256 -days 3650 -in ./cmd/proxy/.cert/ca.csr -signkey ./cmd/proxy/.cert/ca.key -out ./cmd/proxy/.cert/ca.crt | ||
- openssl ecparam -out ./cmd/proxy/.cert/server.key -name prime256v1 -genkey | ||
- openssl req -new -sha256 -key ./cmd/proxy/.cert/server.key -out ./cmd/proxy/.cert/server.csr | ||
- openssl x509 -req -in ./cmd/proxy/.cert/server.csr -CA ./cmd/proxy/.cert/ca.crt -CAkey ./cmd/proxy/.cert/ca.key -CAcreateserial -out ./cmd/proxy/.cert/server.crt -days 3650 -sha256 | ||
- openssl x509 -in ./cmd/proxy/.cert/server.crt -text -noout | ||
|
||
mocks: | ||
cmds: | ||
- mockery | ||
|
||
docker-build: | ||
cmds: | ||
- docker build -t ${IMAGE_NAME} -f .\build\Dockerfile . | ||
|
||
docker-push: | ||
cmds: | ||
- docker push ${IMAGE_NAME} |
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 |
---|---|---|
@@ -1,15 +1,16 @@ | ||
FROM golang:1.22-alpine as builder | ||
|
||
ARG CGO_ENABLED=0 | ||
WORKDIR /app | ||
|
||
COPY go.mod go.sum ./ | ||
RUN go mod download | ||
|
||
COPY . . | ||
|
||
RUN go build cmd/proxy -o /out/app | ||
RUN go build -o /out/app ./cmd/proxy | ||
|
||
# multi stage build, to reduce size of the image | ||
FROM alpine:latest | ||
|
||
COPY --from=builder /out/app /app | ||
|
||
ENTRYPOINT ["/app"] |
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 was deleted.
Oops, something went wrong.
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
File renamed without changes.
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tbh I don't remember why I passed it there, you can remove it. Or, if you want to, you can implement some graceful shutdown on the application close for the sake of art 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I will. Probably by capturing signals. I guess I will do another PR with graceful shutdown.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be similar to this: