Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -96,20 +96,20 @@ init-db:
# Start Docker containers
docker-up:
@echo "Starting Docker containers..."
docker-compose up -d
docker compose up -d
@echo "Waiting for services to be ready..."
@sleep 3
@docker-compose ps
@docker compose ps

# Stop Docker containers
docker-down:
@echo "Stopping Docker containers..."
docker-compose down
docker compose down

# Stop and remove volumes
docker-clean:
@echo "Stopping Docker containers and removing volumes..."
docker-compose down -v
docker compose down -v

# Clean build artifacts
clean:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ If you prefer not to use Make:

1. Start Docker containers:
```bash
docker-compose up -d
docker compose up -d
```

2. Copy environment variables:
Expand Down Expand Up @@ -353,4 +353,4 @@ Apache 2.0

## Related Documentation

- [API Documentation](http://localhost:8080/swagger/) - Interactive Swagger documentation (when server is running)
- [API Documentation](http://localhost:8080/swagger/) - Interactive Swagger documentation (when server is running)
3 changes: 3 additions & 0 deletions tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,19 @@ Before running the tests, ensure:
## Running Tests

Run all integration tests:

```bash
go test ./tests/... -v
```

Run a specific test:

```bash
go test ./tests -run TestHealthEndpoint -v
```

Run tests with coverage:

```bash
go test ./tests/... -v -cover
```
Expand Down
Loading