Skip to content

This software project shows you how to set-up a Flask application and learn the basic Flask Application Structure.

License

Notifications You must be signed in to change notification settings

KyleGichez/App1_Flask

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

App1_Flask

Table of Contents

Overview

This is a software program built in flask. It shows you how to set-up a basic flask application. Let's have a look ⏩

Installation

To install this flask application, clone this repository into your local working environment and open it in your favorite IDE.

git clone  https://github.com/KyleGichez/App1_Flask.git

Also, you can choose to download this project to your local working environment as a zip folder when you click the green code button in this repository.

Set-up

$ python3 -m venv --without-pip virtual
$ source virtual/bin/activate
$ curl https://bootstrap.pypa.io/get-pip.py | python
$ pip install flask
$ deactivate

Requirements

To check all the dependencies installed when building this project, download the requirements.txt file.

click==8.1.3
Flask==2.1.3
importlib-metadata==4.12.0
itsdangerous==2.1.2
Jinja2==3.1.2
MarkupSafe==2.1.1
Werkzeug==2.2.0
zipp==3.8.1
  • Run pip install -r requirements.txt command to install the requirements text file.
  • Run pip freeze command to check all the dependencies that are currently installed in your project.
  • Run pip freeze > requirements.txt command to update the requirements text file.

License

This project is licensed under MIT License.

Author

About

This software project shows you how to set-up a Flask application and learn the basic Flask Application Structure.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published