Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vit0rr/short-spot
URL Shortener written in GoLang
https://github.com/vit0rr/short-spot
api go-chi golang url-shortener
Last synced: 25 days ago
JSON representation
URL Shortener written in GoLang
- Host: GitHub
- URL: https://github.com/vit0rr/short-spot
- Owner: vit0rr
- License: gpl-3.0
- Created: 2024-10-16T12:55:01.000Z (28 days ago)
- Default Branch: main
- Last Pushed: 2024-10-18T09:46:26.000Z (26 days ago)
- Last Synced: 2024-10-18T09:53:47.605Z (26 days ago)
- Topics: api, go-chi, golang, url-shortener
- Language: Go
- Homepage:
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Short Spot
Short Spot is a URL shortening service that allows users to shorten long URLs into short, easy-to-remember links.
## Features
#### Backend
- Shorten long URLs into short links:
![Shorten URL](./imgs/short-url.png)
- Redirect short links to the original URLs:
![Redirect URL](./imgs/redirect-url.png)#### Frontend
WIP## How to run
```bash
git clone [email protected]:vit0rr/short-spot.git
``````bash
cd short-spot
``````bash
go mod tidy
``````bash
docker compose up
``````bash
go run cmd/api/main.go
# or configure your GoPath and run
```