darthSoura / example-heroku-python

Example of deployable python HTTP server on Heroku

Home Page:https://abdennour-shorten.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Getting Started

  1. Clone the repository

  2. Create your Heroku app: heroku create your-app-name

  3. 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: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

About

Example of deployable python HTTP server on Heroku

https://abdennour-shorten.herokuapp.com/


Languages

Language:Python 100.0%