https://github.com/unknownrori/krutz
URL Shorter microservice written in Python
https://github.com/unknownrori/krutz
microservice python url-shortener
Last synced: 11 months ago
JSON representation
URL Shorter microservice written in Python
- Host: GitHub
- URL: https://github.com/unknownrori/krutz
- Owner: UnknownRori
- License: mit
- Created: 2022-06-05T02:45:39.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-06T10:11:50.000Z (almost 4 years ago)
- Last Synced: 2023-03-05T09:57:18.243Z (about 3 years ago)
- Topics: microservice, python, url-shortener
- Language: HTML
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Krutz
A shorter uri microservice written in flask.
### Development
```
# Clone the repo
> git clone https://github.com/UnknownRori/krutz.git
# Enter cloned directory
> cd krutz
# Make sure to install virtualenv
> pip install virtualenv
# Create virtual env
> python -m venv venv
# Activate virtual env
> source venv/Scripts/activate
# Install dependency
> pip install -r requirements.txt
```