A web server built using Go language, demonstrating the working of Routes, fit into a hypothetical use case. Uses, GET & POST methods (no persistant storage- DB attached)
- Fork the repository, and open the repository in a Github CodeSpace.
- Alternatively, you may also decide to clone the repo and download it to your local system.
- Using a terminal navigate to root directory of the project and execute
go build
followed bygo run main.go
to execute built file and run the server. - If you are in codespaces, use live server extension from VS Code extension tab. If you are on local, running the project on localhost would satisfy the purpose.
- Once the server is running, append respective URI in the URL such as
/form
and/hello
- The application should be working.