basic-flask-app
basic-flask-app copied to clipboard
Created development environment by deploying application to Heroku
Hello, This was indeed great Flask Example, i have taken the liberty to establish a deployment to heroku.
Instructions to run the application.
- Install Heroku Command Line Interface
- Clone our repository
- create a Python virtual environment.
python -m venv venv/ source venv/bin/activate
- Login to Heroku using command Heroku login or else signup in Heroku and again enter Heroku Login.
- Deploy the app : Create an app on Heroku, which prepares Heroku to receive your source code:
- heroku create "app name"
- git push heroku main or master
- From the command line you will get a link ending with saying deployed to heroku. Copy the URL and check in browser. similar to: https://basic-flask-app-python.herokuapp.com/ deployed to Heroku
Reverting for environment changes