build: Set up the monorepo workspace. Ensure the root README describes a pro...
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
This commit is contained in:
parent
5f9a30c999
commit
75a9016e19
@ -1,7 +1,6 @@
|
||||
# Default Dockerfile - replace with your application
|
||||
# Foundary — replace with application-specific build
|
||||
FROM nginx:alpine
|
||||
|
||||
# Copy static files or your app
|
||||
COPY . /usr/share/nginx/html/
|
||||
|
||||
EXPOSE 80
|
||||
|
||||
69
README.md
69
README.md
@ -1,21 +1,66 @@
|
||||
# foundary-1770652398
|
||||
# Foundary
|
||||
|
||||
Deployed at: https://wmqrefkk.threesix.ai
|
||||
**A product studio for conversational product development.**
|
||||
|
||||
Foundary turns conversations into working software. Describe what you want to build, iterate through dialogue, and ship production-ready products — all driven by natural conversation.
|
||||
|
||||
## How It Works
|
||||
|
||||
1. **Converse** — Describe your product idea in plain language
|
||||
2. **Refine** — Iterate on requirements, design, and architecture through dialogue
|
||||
3. **Build** — Foundary generates and assembles the components
|
||||
4. **Ship** — Deploy to production with a single push
|
||||
|
||||
## Repository Structure
|
||||
|
||||
```
|
||||
foundary/
|
||||
├── apps/ # Deployable applications (web UI, CLI, etc.)
|
||||
├── services/ # Backend microservices
|
||||
├── packages/ # Shared libraries and modules
|
||||
├── docs/ # Documentation and guides
|
||||
├── scripts/ # Build, deploy, and development scripts
|
||||
├── Dockerfile # Container build
|
||||
└── .woodpecker.yml # CI/CD pipeline
|
||||
```
|
||||
|
||||
| Directory | Purpose |
|
||||
| ------------ | ---------------------------------------------------- |
|
||||
| `apps/` | User-facing applications and interfaces |
|
||||
| `services/` | Independent backend services |
|
||||
| `packages/` | Shared code — utilities, types, clients |
|
||||
| `docs/` | Architecture decisions, API docs, onboarding guides |
|
||||
| `scripts/` | Automation for local dev, CI, and deployment |
|
||||
|
||||
## Getting Started
|
||||
|
||||
1. Clone the repository
|
||||
2. Build with Docker: `docker build -t foundary-1770652398 .`
|
||||
3. Run locally: `docker run -p 8080:8080 foundary-1770652398`
|
||||
```bash
|
||||
# Clone
|
||||
git clone https://git.threesix.ai/jordan/foundary-1770652398.git
|
||||
cd foundary-1770652398
|
||||
|
||||
## CI/CD
|
||||
# Build
|
||||
docker build -t foundary .
|
||||
|
||||
This project uses Woodpecker CI for continuous deployment. Pushing to `main` will:
|
||||
- Build a Docker image
|
||||
- Push to the container registry
|
||||
- Deploy to Kubernetes
|
||||
# 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://wmqrefkk.threesix.ai
|
||||
|
||||
## Contributing
|
||||
|
||||
Each `services/`, `apps/`, and `packages/` subdirectory is independently buildable and testable. See the README in each directory for specific instructions.
|
||||
|
||||
## Resources
|
||||
|
||||
- Live site: https://wmqrefkk.threesix.ai
|
||||
- Git repository: https://git.threesix.ai/jordan/foundary-1770652398.git
|
||||
- **Live site**: https://wmqrefkk.threesig.ai
|
||||
- **Repository**: https://git.threesig.ai/jordan/foundary-1770652398.git
|
||||
|
||||
0
apps/.gitkeep
Normal file
0
apps/.gitkeep
Normal file
0
docs/.gitkeep
Normal file
0
docs/.gitkeep
Normal file
0
packages/.gitkeep
Normal file
0
packages/.gitkeep
Normal file
0
scripts/.gitkeep
Normal file
0
scripts/.gitkeep
Normal file
0
services/.gitkeep
Normal file
0
services/.gitkeep
Normal file
Loading…
Reference in New Issue
Block a user