This is a simple Portfolio website written in Golang. It uses the net/http package to serve HTTP requests.
To build the application locally in windows OS, execute the following command:
go buildThis will generate binary file. Here I am using windows, so it will create .exe file with the name of the git repository ( eg: NavyaPortfolio-GoLang.git.exe )
(or)
go build -o binary.exe .This will create a "binary.exe" file. You can give anyname with .exe extension.
To run the server, execute the following command:
./NavyaPortfolio-Golang.git.exe(or)
go run main.goThe server will start on port 8080. You can access it by navigating to http://localhost:8080/home in your web browser.
