This repository contains ONLY the Docker Compose orchestration files for the PyAirtable platform.
The PyAirtable platform is now properly separated into individual repositories:
- pyairtable-frontend - All frontend services (React/Next.js)
- pyairtable-go-services - All Go microservices
- pyairtable-python-services - All Python microservices
- pyairtable-infrastructure - Infrastructure as Code (Terraform/K8s)
- pyairtable-docs - Documentation hub
docker-compose.yml- Main orchestration filedocker-compose.prod.yml- Production configurationdocker-compose.test.yml- Test configuration.env.*- Environment configurations- Deployment and test scripts
- Clone all repositories:
git clone https://github.com/PyAirtableMCP/pyairtable-compose.git
git clone https://github.com/PyAirtableMCP/pyairtable-frontend.git
git clone https://github.com/PyAirtableMCP/pyairtable-go-services.git
git clone https://github.com/PyAirtableMCP/pyairtable-python-services.git
git clone https://github.com/PyAirtableMCP/pyairtable-infrastructure.git- Set up environment:
cd pyairtable-compose
cp .env.example .env
# Edit .env with your configuration- Start services:
docker-compose up -dEach service repository has its own development setup and README. This repository is purely for orchestration.
MIT