Documentation available here
- Docker
- Clone the GitHub repo.
- Run
docker-compose up -d
in the root directory and hithttp://localhost:8000
in your browser.
- Exec into the PostgreSQL container with the following command :
docker exec -ti postgres-container psql -U postgres
\l
- list all the database(s)\c DATABASE_NAME
- connect to a specific database\c kots
- connect to kots database\dt
- list all tables in the current databaseselect * from users;
- list all users from the table users\! clear
- clear the screen in psql\q
- quit psql
-
Exec into the node.js container with the following command :
docker exec -it kots-server sh
-
If you want to run in the container any npm scripts inside the package.json, change the server port cause 8000 is already in use.
-
For more info check the API documetaion here
The code coverage available here
Integration tests report available here
The code coverage available here
Unit tests report available here
E2E tests report available here
Lighthouse report available here