Getting Started
-
Clone the repository
-
Create your Heroku app:
heroku create your-app-name -
Push your code to Heroku with Git:
git push heroku master
Using Docker
Run it locally using docker
1. Create Docker image
docker build . -t local-shorten-python:latest2. Run the docker container
docker run -p 8888:8000 local-shorten-python3. Verification
Go to your browser and open http://localhost:8888