/Flask-Learning-Project

This repository tracks the files as I follow a Flask tutorial created by Miguel Grinberg

Primary LanguagePython

Flask-Learning-Project

This repository contains files needed for running an app created with the Flask library in Python. I am following the tutorial provided by Miguel Grinberg in his blog, which can be accessed in the link below: https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world

The project is currently structured as follows:

microblog/

   app/


      templates/

 
      __init.py__
 
      routes.py
 
   config.py

   microblog.py

microblog.py is the main application.

microblog.py sets some configurations related to Flask and its extensions

app/templates/ contains HTML templates rendered by the application

app/init.py initializes the application

app/routes.py contains the various functions of our application, and the respective URL's that call these functions