Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niklus/go-app
Simple GO Web Application
https://github.com/niklus/go-app
go golang
Last synced: 3 days ago
JSON representation
Simple GO Web Application
- Host: GitHub
- URL: https://github.com/niklus/go-app
- Owner: Niklus
- Created: 2023-02-27T08:41:36.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-02-27T12:04:13.000Z (over 1 year ago)
- Last Synced: 2024-04-15T04:42:07.150Z (7 months ago)
- Topics: go, golang
- Language: Go
- Homepage: https://go-app-3afx.onrender.com
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Go App
Learning Golang whilst building a simple web application.
This simple app demonstrates routing, templating and file structure.## Running the app
After installing Golang, run the following:
```bash
cd src
``````golang
go run main.go
```To build the application, run the following:
```golang
go build -o build/app main.go
```This will create an executable file named app in the build folder,
Which you can run with the following:```bash
./build/app
```