Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexdenkk/auth-api
Authentication api using Go/Gin/Docker/PostgreSQL
https://github.com/alexdenkk/auth-api
clean-architecture docker gin go nginx posgresql
Last synced: about 1 month ago
JSON representation
Authentication api using Go/Gin/Docker/PostgreSQL
- Host: GitHub
- URL: https://github.com/alexdenkk/auth-api
- Owner: alexdenkk
- Created: 2024-07-29T16:33:06.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-30T16:25:18.000Z (4 months ago)
- Last Synced: 2024-10-02T05:21:29.544Z (about 1 month ago)
- Topics: clean-architecture, docker, gin, go, nginx, posgresql
- Language: Go
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Auth api
Authentication api using Go/Gin/Docker/PostgreSQL## Run
Run with docker
```cmd
cd deployments/docker-compose
docker-compose up -d
```## Endpoints
### POST `/auth/login/`
Request example
```json
{
"login": "alexdenkk",
"password": "12345678",
}
```
Response example
```json
{
"token": ""
}
```