52 lines
1.4 KiB
Markdown
52 lines
1.4 KiB
Markdown
# Foundary
|
|
|
|
A product studio for conversational product development.
|
|
|
|
Foundary turns natural-language conversations into working software. Describe what you want to build, iterate through dialogue, and ship production-ready products — all driven by conversation.
|
|
|
|
## How It Works
|
|
|
|
1. **Converse** — Describe your product idea in plain language.
|
|
2. **Refine** — Iterate on requirements, design, and architecture through back-and-forth dialogue.
|
|
3. **Build** — Foundary generates the code, infrastructure, and deployment configuration.
|
|
4. **Ship** — Push to `main` and your product is live.
|
|
|
|
## Repository Structure
|
|
|
|
```
|
|
├── services/ # Backend services
|
|
├── packages/ # Shared libraries and utilities
|
|
├── docs/ # Documentation
|
|
├── Dockerfile # Container build
|
|
└── .woodpecker.yml # CI/CD pipeline
|
|
```
|
|
|
|
## Getting Started
|
|
|
|
```bash
|
|
# Clone
|
|
git clone https://git.threesig.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. Deploy to Kubernetes
|
|
|
|
Live at: https://88tq253n.threesix.ai
|
|
|
|
## Resources
|
|
|
|
- **Live site**: https://88tq253n.threesix.ai
|
|
- **Repository**: https://git.threesix.ai/jordan/foundary-test-1770625554.git
|