How to Install MariaDB and Configure UFW on Ubuntu MariaDB is an open-source relational database management system, commonly used as an alternative for MySQL. UFW (Uncomplicated Firewall) is a firewall configuration tool that runs on top of iptables, included by default within Ubuntu distributions. In this document, you will learn how to install MariaDB on…
Tag: database
Creating a Web App CRUD with Flask, SqlAlchemy and SQLite
Flask is a microweb framework for python really useful and easy to implement many times of system, let’s create a webapp using these free useful tools and create our local database. 1- First let’s create a virtual enviroment using Miniconda 2 – Install the dependencies: 3- Creating our Web App 3.1 – Creating our Models:…