- Pre-requisite: docker, postgreSQL, intelliJ, postman
- Paste this in the terminal
make dev
to build the docker container - Run the application in intelliJ
- Connect and run http requests on localhost//:5100
- Run the following in the terminal;
docker ps
: to list the running containersdocker exec -it {name_of_container} bash
: ability to execute shell commands within the terminalpsql -U admin -d quicksend
\l
: to list the database, you should see the created database quicksend\d
: to list the tables in the database'SELECT * from users'
: list all users in the database