Skip to content

joekakone/Flask-Bootcamp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask Web Application Development Challenge

Hello, I'm Joseph Konka, Python enthousiast. Flask is a Python framework for building web application developing. In this project, I'm building several web applications using Flask. I hope it will help you. Bye !

Contents

Setup Virtual Environment

python -m venv env
.\env\Scripts\activate.bat
pip install -r requirements.txt

Run app

python app.py
flask run --debug --host=0.0.0.0 --port=5000
flask --app app run --debug --host=0.0.0.0 --port=5000

Run with Docker

docker build -f Dockerfile -t iflaskapp .
docker run -p 5000:5000 \
    --restart=always \
    --name cflaskapp \
    -d iflaskapp

Resources

Let's get in touch

Github Badge Linkedin Badge Twitter Badge Gmail Badge

About

Flask Bootcamp Source Code

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published