Web Application:
NOTE: If the web server does not respond, try connecting again in 5 minutes.
API Documentation
API Server:
Container application: iwk-web
- web application
- listening on port 8000
- check containers logs:
docker logs iwk-web- credentails:
admin:admin
Container application: iwk-api
- API server
- listening on port 8080
- check containers logs:
docker logs iwk-apiContainer application: iwk-postgres
- database
- listening on port 5432
- connect to database:
# from host
docker exec -it iwk-postgres psql -U iwk
# from app
postgresql://iwk:iwk@localhost/iwk?sslmode=disableContainer application: iwk-docs
- open api docs server
- listening on port 8081
Setup dev environment:
docker compose -f infra/docker-compose.yaml up -d --buildDrop dev environment:
docker compose -f infra/docker-compose.yaml down -v