Installation Clone the repository: git clone https://github.com/rifqiyusrilmuslikhin/forumapi.git cd forumapi npm install Configure the application: Rename the .env.example file to .env. Open the .env file and update the configuration settings as required. Run database migrations: npm run migrate up Create configuration for database testing migrations: Create folder config/database Create file test.json in config/database Fill the test.json file. Here is an example of the content of the test.json file: { "host": "localhost", "port": 5432, "username": "testuser", "password": "testpass", "database": "testdb" } Run database testing migrations: npm run migrate:test up Run testing application: npm run test:watch Start the application: npm run start:dev | npm run start