Giteo is a CLI-based URL shortener written in Python which uses GitHub's git.io URL shortening service.
These instructions will get you a copy of the project up and running on your local machine.
- Python 3.7+
- Pipenv
- Docker (Optional)
- Fork this repo
- Set up your Pipenv environment (
pipenv install
) - Set up your Docker environment (
docker build -t giteo:latest .
) (Optional)
pip install giteo
docker pull TuxOtaku/giteo:latest
giteo --url <url_to_be_shortened> --code <shortened_url_suffix>
docker run --rm TuxOtaku/giteo:latest --url <url_to_be_shortened> --code <shortened_url_suffix>