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
- Host: GitHub
- URL: https://github.com/zelflod/url_shortener_api
- Owner: zelflod
- Created: 2020-03-12T18:28:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-17T10:07:29.000Z (over 6 years ago)
- Last Synced: 2025-01-11T11:46:13.964Z (over 1 year ago)
- Topics: clean-architecture, postgres
- Language: Go
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```