Initialize project from default template
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/manual/woodpecker Pipeline was successful

This commit is contained in:
jordan 2026-02-10 16:42:44 +00:00
commit 6dd9545854
4 changed files with 85 additions and 0 deletions

32
.claude/CLAUDE.md Normal file
View File

@ -0,0 +1,32 @@
# foundary-test-1770741705
Project deployed to 7359yn7t.threesix.ai via threesix.ai platform.
## Quick Start
```bash
# Clone
git clone https://git.threesix.ai/jordan/foundary-test-1770741705.git
cd foundary-test-1770741705
# Build
docker build -t foundary-test-1770741705 .
# Run
docker run -p 8080:8080 foundary-test-1770741705
```
## 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://7359yn7t.threesix.ai
## Constraints
- Keep the Dockerfile optimized for build time
- Use multi-stage builds when possible
- All config via environment variables

23
.woodpecker.yml Normal file
View File

@ -0,0 +1,23 @@
steps:
docker:
image: woodpeckerci/plugin-kaniko
settings:
registry: registry.threesix.ai
repo: "foundary-test-1770741705"
tags:
- latest
- ${CI_COMMIT_SHA:0:8}
cache: true
skip-tls-verify: true
failure: ignore
when:
- event: push
branch: main
deploy:
image: bitnami/kubectl:latest
commands:
- kubectl set image deployment/foundary-test-1770741705 foundary-test-1770741705=registry.threesix.ai/foundary-test-1770741705:${CI_COMMIT_SHA:0:8} -n projects
when:
- event: push
branch: main

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
# Default Dockerfile - replace with your application
FROM nginx:alpine
# Copy static files or your app
COPY . /usr/share/nginx/html/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

21
README.md Normal file
View File

@ -0,0 +1,21 @@
# foundary-test-1770741705
Deployed at: https://7359yn7t.threesix.ai
## Getting Started
1. Clone the repository
2. Build with Docker: `docker build -t foundary-test-1770741705 .`
3. Run locally: `docker run -p 8080:8080 foundary-test-1770741705`
## CI/CD
This project uses Woodpecker CI for continuous deployment. Pushing to `main` will:
- Build a Docker image
- Push to the container registry
- Deploy to Kubernetes
## Resources
- Live site: https://7359yn7t.threesix.ai
- Git repository: https://git.threesix.ai/jordan/foundary-test-1770741705.git