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