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

https://github.com/zelflod/url_shortener_api

URL Shortener
https://github.com/zelflod/url_shortener_api

clean-architecture postgres

Last synced: about 1 month ago
JSON representation

URL Shortener

Awesome Lists containing this project

README

          

# URL Shortener API

### API DOC

[Is here](api/README.md)

### Run with docker-compose

```
make run
or
make stop
```

### Run with Dockerfile
```
docker build -t url_shortener_api_web .
docker run -it -p 5000:5000 --name url_shortener_api_web -t url_shortener_api_web
docker stop url_shortener_api_web
docker rm url_shortener_api_web
```