Building a http sever in Java to learn more about Java, sockets and software delivery.
- Clone the repo
- run
./gradlew build
to build the gradle project. - Then run
./gradlew run
to run the project. - If running in intellij :
- Open up the gradle project window and execute the build task.
- You can also just click the build button.
- To run the actual project once built run the application task or enter
./gradlew run
in the terminal.
- run
./gradlew test
in terminal and tests should run.
Building a http server to introduce myself to networking fundamentals.