---
description: Common tasks and workflows
alwaysApply: false
---
# Common Tasks

## Adding a New Service

1. Add service definition to docker-compose.yml
2. Update README.md with port and description
3. Verify environment variables are set
4. Test the service starts correctly

## Modifying docker-compose.yml

1. Verify environment variables are set
2. Check port conflicts
3. Update README.md if ports or services change

## Updating Python Scripts

1. Ensure they follow PEP 8
2. Add docstrings for new functions/classes
3. Test the script functionality
4. Update any related documentation
