https://github.com/tutorialedge/beginners-guide-project
https://github.com/tutorialedge/beginners-guide-project
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tutorialedge/beginners-guide-project
- Owner: TutorialEdge
- Created: 2021-08-22T08:56:31.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-08-22T10:12:07.000Z (over 4 years ago)
- Last Synced: 2025-07-28T17:56:06.247Z (5 months ago)
- Language: Go
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Beginner's Project
====================
## Running Locally
If you want to run this application locally then run the following command:
```bash
$ go run cmd/cli/main.go
```
## Build Application
In order to build this application as a binary executable we can run the following
command:
```bash
$ go build -o cli cmd/cli/main.go
```