Simple Flask Application
This is a simple Flask application which takes a name from users and greets them by their name.
Deployment link
Go to hellfire.herokuapp.com/index
for a deployment of the web form.
Setup
- Install python3 on your computer.
- Start up the terminal and type
pip install flask
. - Go to this application's root directory and open a terminal.
- On Linux & Mac, type
export FLASK_APP=app.py
; On Windows, typeset FLASK_APP=app.py
. - Then run
python -m flask run
- Goto
http://127.0.0.1:5000/index
on that's it!
NOTE: Linux users might have to use python3 and pip3 instead of python and pip.