- NodeJS - Platform
- TypeScript - Programming Language
- PostgreSQL - Database (you can use MySQL/SQLite as well)
- TypeORM - ORM
- Enter
psql
as admin - Create Database, user and grant privilege
create database conduit;
create user conduit with encrypted password 'conduit';
grant all privileges on database conduit to conduit;