Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kilee1230/go-todo-app
go todo api
https://github.com/kilee1230/go-todo-app
Last synced: 24 days ago
JSON representation
go todo api
- Host: GitHub
- URL: https://github.com/kilee1230/go-todo-app
- Owner: kilee1230
- Created: 2024-01-21T10:51:07.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-07-01T01:06:46.000Z (4 months ago)
- Last Synced: 2024-07-05T12:49:05.478Z (4 months ago)
- Language: Go
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Go Todo App
This is a simple Todo application written in Go.
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
### Installing
1. Clone the repository: `git clone https://github.com/kilee1230/go-todo-app.git`
2. Navigate to the project directory: `cd go-todo-app`
3. Build the project: `make build`### Running the application
To run the application, use the following command:
```bash
make run-dev
```## Docker Build
To build the Docker image, run the following command:
```bash
docker build -t go-todo-app .
```## Docker Run
To run the Docker image, use the following command:
```bash
docker run -p 3000:3000 go-todo-app
```