https://github.com/joekakone/flask-bootcamp
Flask Bootcamp Source Code
https://github.com/joekakone/flask-bootcamp
Last synced: 3 months ago
JSON representation
Flask Bootcamp Source Code
- Host: GitHub
- URL: https://github.com/joekakone/flask-bootcamp
- Owner: joekakone
- License: mit
- Created: 2023-07-07T20:20:02.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-08-05T18:21:21.000Z (almost 2 years ago)
- Last Synced: 2025-01-14T04:33:02.734Z (5 months ago)
- Language: HTML
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask Web Application Development Challenge
Hello, I'm [Joseph Konka](https://www.linkedin.com/in/joseph-koami-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
- [1. First App](01_First_App)
- [2. URL Shortener](02_URL_Shortener)## Setup Virtual Environment
```sh
python -m venv env
.\env\Scripts\activate.bat
pip install -r requirements.txt
```## Run app
```sh
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
```sh
docker build -f Dockerfile -t iflaskapp .
docker run -p 5000:5000 \
--restart=always \
--name cflaskapp \
-d iflaskapp
```## Resources
- https://flask.palletsprojects.com/en/latest/
- https://joekakone.github.io/algojungle/mlops/flask/## Let's get in touch
[](https://github.com/joekakone) [](https://www.linkedin.com/in/joseph-koami-konka/) [](https://www.twitter.com/joekakone) [](mailto:[email protected])