Metadata-Version: 2.1
Name: shtl-ink-api
Version: 0.0.15
Summary: Python URL Shortener
Home-page: https://github.com/mskymoore/url_shortener
Author: Sky Moore
Author-email: mskymoore@gmail.com
License: MIT license
Keywords: url,url_shortener,api
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown

# shtl.ink api
**URL Shortener built with Python and FastAPI**

[github repository](https://github.com/mskymoore/url_shortener)

## Read API Docs

1. Run App
2. Navigate to http://localhost:8000/docs or http://localhost:8000/redoc

## Build Local
```console
pip install -r requirements.txt
python -m build
```

## Run Local

```console
pip install shtl-ink-api
uvicorn shtl_ink_api.app:app
```

## Build Docker
```console
docker build -t skymoore/shtl-ink-api .
```

## Run Docker

```console
docker pull skymoore/shtl-ink-api
docker run --rm -it  -p 8000:8000/tcp skymoore/shtl-ink-api:latest
```
