Skip to main content
Version: 1.37

Configure your database

A PostgreSQL database is required for Deeploy Core to serve as the backend for Deeploy's APIs, log storage, and event storage. If you have followed the previous steps, you should be running a managed Azure PostgreSQL, which is highly recommended, particularly for production environments. However, you are free to configure any PostgreSQL database according to your needs.

Make sure that the Postgres database server has the following two databases:

  1. deeploy
  2. deeploy_kratos
info
  • The username and password for both of these databases are the same. The user should have administrative rights on the databases.
  • The databases should have at least one (public) database schema.
create database deeploy;
create database deeploy_kratos;