DEV Community

Cover image for Flask[Part 2]: Setting up Database
Tito
Tito

Posted on

3 3

Flask[Part 2]: Setting up Database

Introduction

This article is a continuation of our Previous Post where we tackled setting up working directory, working environment , installing flask and run a flask app.
In this article we will focus on creating models , migrations and testing database

Prerequisite

  • python 3+ installed
  • Flask Installed; A working flask app
  • PostgreSQL optional; work with DBMS of your choice

Before you start, create a model.py file in project folder and install ,import the following packages:

  • flask-login
  • flask-sqlalchemy
  • flask-migrate
  • itsdangerous Alt Text On the database configuration, it is advisable to hide the db details using environment variables.

Now Go ahead the model
Alt Text

After creating our model and ensuring that the DBMS of your choice is working, carry out a migration:

(env) tito@tito-HP-2000-Notebook-PC:~/Desktop/Milestone/Mile_Proj$ flask db init
(env) tito@tito-HP-2000-Notebook-PC:~/Desktop/Milestone/Mile_Proj$ flask db migrate
Enter fullscreen mode Exit fullscreen mode

The migrations will automatically create tables in your Database.
Thank you for following .
The next article , I will handle forms for collecting data.
------------------------------------ NEXT ARTICLE------------------------------------

AWS Security LIVE!

Tune in for AWS Security LIVE!

Join AWS Security LIVE! for expert insights and actionable tips to protect your organization and keep security teams prepared.

Learn More

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay