To install the necessary dependencies, run:
npm installTo start the application, use:
npm run devTo run a PostgreSQL database using Docker, execute the following command:
docker run --name infcom -e POSTGRES_USER=admin -e POSTGRES_PASSWORD=admin -p 5432:5432 -d postgresThis command will create a new PostgreSQL container with the specified user and password.
After setting up the database, you can connect your application to it and start using the features provided by the library.