https://github.com/eskylake/gotodo
Very Simple Todo API using Go Fiber
https://github.com/eskylake/gotodo
Last synced: 2 months ago
JSON representation
Very Simple Todo API using Go Fiber
- Host: GitHub
- URL: https://github.com/eskylake/gotodo
- Owner: eskylake
- Created: 2023-11-25T10:02:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-25T10:25:34.000Z (over 1 year ago)
- Last Synced: 2023-11-25T11:21:01.592Z (over 1 year ago)
- Language: Go
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GoTodo
Very simple Todo API using Go Fiber.
## Installation
```bash
docker compose -f docker-compose.dev.yml up -d
```## Usage
```bash
mv .env.example .env
```
Open `.env` and make changes.```bash
docker exec -t go-todo-api air
```Serves on [localhost:{GOTODO_API_HTTP_PORT}](http://localhost:4000/api)
For example [GET Todos](http://localhost:4000/api/todos)
## Build
```bash
docker build -t gotodoapi -f Dockerfile.prod .
```## License
[MIT](https://choosealicense.com/licenses/mit/)