PostgreSQL

How To Set Up Django with Postgres, Nginx, and Gunicorn on Debian 11 — step-by-step Linux tutorial on Progressive Robot

How To Set Up Django with Postgres, Nginx, and Gunicorn on Debian 11

Django is a powerful web framework that can help you get your Python application or website off the ground. Django includes a simplified development server for testing your code locally, but for anything even slightly production related, a more secure and powerful web server like Nginx is a major asset to your stack.

Read more
How To Use a PostgreSQL Database in a Flask Application — step-by-step Databases tutorial on Progressive Robot

How To Use a PostgreSQL Database in a Flask Application

In web applications, you usually need a database, which is an organized collection of data. You use a database to store and maintain persistent data that can be retrieved and manipulated efficiently. PostgreSQL, or Postgres, is a relational database management system that provides an implementation of the SQL querying language. In this tutorial, you’ll build a small book review web application that demonstrates how to use the psycopg2 library, a PostgreSQL database adapter.

Read more
How To Deploy a Rails App with Git Hooks on Ubuntu 14.04 — step-by-step Linux tutorial on Progressive Robot

How To Deploy a Rails App with Git Hooks on Ubuntu 14.04

In this tutorial, we will show you how to use Git hooks to automate the deployment of the production environment of your Rails application to a remote Ubuntu 14.04 server. Using Git hooks will allow you to deploy your application by simply pushing your changes to a production server. This particular setup uses a simple “post-receive” Git hook, in addition to Puma as the application server, Nginx as a reverse proxy to Puma, and PostgreSQL as the database.

Read more
How To Install and Use PostgreSQL 9.4 on Debian 8 — step-by-step Linux tutorial on Progressive Robot

How To Install and Use PostgreSQL 9.4 on Debian 8

Relational databases are the cornerstone of data organization for a multitude of needs. They power everything from online shopping to rocket launches. A database that is both venerable but very much still in the game is PostgreSQL. PostgreSQL follows most of the SQL standard, has ACID transactions, has support for foreign keys and views, and is still in active development.

Read more
CHAT