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
- Install PostgreSQL.
- Create a database.
CREATE DATABASE corlink;
- Create a user.
CREATE USER corlink WITH PASSWORD 'corlink';
- Grant the user access to the database.
GRANT ALL PRIVILEGES ON DATABASE corlink TO corlink;
- You should now have a PostgreSQL database setup for Corlink.
Table of Contents