https://github.com/lapp-coder/todo-app
https://github.com/lapp-coder/todo-app
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lapp-coder/todo-app
- Owner: Lapp-coder
- Created: 2021-05-29T13:50:11.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-01T10:15:36.000Z (over 4 years ago)
- Last Synced: 2025-12-17T05:37:57.371Z (6 months ago)
- Language: Go
- Size: 173 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# REST API for todo list application ```v2.1.0```
***
### To run the application in docker:
```
$ make build && make run
```
### Before launching the application for the first time:
* Create a .env file in the root of the application with the following contents:
```
POSTGRES_PASSWORD=
SIGNING_KEY=
SALT=
TZ=
```
* Apply migrations to the database:
```
$ export POSTGRES_PASSWORD=
```
```
$ make migrate-up
```
### Use the following to create documentation:
```
$ make swag
```
### Documentation can be found at:
`http://:/swagger/index.html`
### You can also run the tests with the following command:
```
$ make test
```