41 lines
852 B
Markdown
41 lines
852 B
Markdown
# Foundary
|
|
|
|
Product studio for conversational product development. Deployed to 88tq253n.threesix.ai via threesix.ai platform.
|
|
|
|
## Repository Layout
|
|
|
|
This is a monorepo:
|
|
|
|
- `services/` — Backend services
|
|
- `packages/` — Shared libraries and utilities
|
|
- `docs/` — Documentation
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
# Clone
|
|
git clone https://git.threesix.ai/jordan/foundary-test-1770625554.git
|
|
cd foundary-test-1770625554
|
|
|
|
# Build
|
|
docker build -t foundary .
|
|
|
|
# Run
|
|
docker run -p 8080:8080 foundary
|
|
```
|
|
|
|
## Deployment
|
|
|
|
Pushes to `main` trigger automatic deployment via Woodpecker CI:
|
|
1. Build Docker image
|
|
2. Push to registry (registry.threesix.ai)
|
|
3. Update Kubernetes deployment
|
|
|
|
Live at: https://88tq253n.threesix.ai
|
|
|
|
## Constraints
|
|
|
|
- Keep the Dockerfile optimized for build time
|
|
- Use multi-stage builds when possible
|
|
- All config via environment variables
|