- PostgreSQL
- Node.js
- Clone the repository
- Install dependencies using
npm install
- Create a PostgreSQL database.
- Update the
server.config.ts
file with your database credentials. template:import { Config } from "src/config"; const config: Config = { database: { database: "", username: "", password: "", host: "", port: 0, }, ipsc: {}, }; export default config;
- Run
npm run build
to build the project. - Run
npm run start:prod
to start the server.