Setup a PostgreSQL Database (only needed if you are not using the Docker Compose method)

This is the database that stores all the data for Corlink.

Prerequisites

Steps

  1. Install PostgreSQL.
  2. Create a database.
CREATE DATABASE corlink;
  1. Create a user.
CREATE USER corlink WITH PASSWORD 'corlink';
  1. Grant the user access to the database.
GRANT ALL PRIVILEGES ON DATABASE corlink TO corlink;
  1. You should now have a PostgreSQL database setup for Corlink.
Table of Contents