Skip to content

Commit

Permalink
DEV: README File modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
Mgrdich committed Nov 13, 2024
1 parent 69fc7fd commit 6dde160
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ go.work

.idea/*

main-exec

5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ test:
go test -v ./...

build_ci:
CGO_ENABLED=0 GOOS=linux go build -o server cmd/main.go
CGO_ENABLED=0 GOOS=linux go build -o main-exec cmd/main.go

install:
go mod download

tidy:
go mod tidy

run:
go run cmd/main.go
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# HTTP Server Implementation from Scratch

* implement `HTTP/2.0` Server using `tcp`
* making sure it uses multi-threading



## How to build the project
* run `make build_ci` to build the executable and then `./main-exec`
* or you can `make run`

0 comments on commit 6dde160

Please sign in to comment.