https://github.com/rbbydotdev/scheduleme
https://github.com/rbbydotdev/scheduleme
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rbbydotdev/scheduleme
- Owner: rbbydotdev
- Created: 2023-07-10T21:34:17.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-11T12:18:40.000Z (over 1 year ago)
- Last Synced: 2025-03-17T21:43:47.943Z (12 months ago)
- Language: Go
- Homepage:
- Size: 68.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Go Project with Docker
This is a small Go project with a "Hello, World!" program, set up with a Docker container.
## Building the Docker Image
To build the Docker image, run the following command in the project directory:
```
make build
```
## Running the Docker Container
To run the Docker container, execute the following command:
```
make run
```
This command will run the container and print "Hello, World!" to the console.
## Local development using Air
To run the local development server, execute the following command:
```
air
```
air should be installed, install air with the following command:
```
go get -u github.com/cosmtrek/air
```