Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```