commit 5a35b14281fe5b0acc5df2bd4e57ba6e42c5a02a Author: jordan Date: Sat Jan 31 17:54:54 2026 +0000 Initialize project from default template diff --git a/.claude/CLAUDE.md b/.claude/CLAUDE.md new file mode 100644 index 0000000..f5d65d6 --- /dev/null +++ b/.claude/CLAUDE.md @@ -0,0 +1,32 @@ +# testfix + +Project deployed to cux6k26q.threesix.ai via threesix.ai platform. + +## Quick Start + +```bash +# Clone +git clone https://git.threesix.ai/jordan/testfix.git +cd testfix + +# Build +docker build -t testfix . + +# Run +docker run -p 8080:8080 testfix +``` + +## 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://cux6k26q.threesix.ai + +## Constraints + +- Keep the Dockerfile optimized for build time +- Use multi-stage builds when possible +- All config via environment variables diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..7e7c83c --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,22 @@ +steps: + docker: + image: woodpeckerci/plugin-kaniko + settings: + registry: registry.threesix.ai + repo: "testfix" + tags: + - latest + - ${CI_COMMIT_SHA:0:8} + cache: true + skip-tls-verify: true + when: + - event: push + branch: main + + deploy: + image: bitnami/kubectl:latest + commands: + - kubectl set image deployment/testfix testfix=registry.threesix.ai/testfix:${CI_COMMIT_SHA:0:8} -n projects + when: + - event: push + branch: main diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e7846dc --- /dev/null +++ b/Dockerfile @@ -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;"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..06a7daf --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# testfix + +Deployed at: https://cux6k26q.threesix.ai + +## Getting Started + +1. Clone the repository +2. Build with Docker: `docker build -t testfix .` +3. Run locally: `docker run -p 8080:8080 testfix` + +## 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://cux6k26q.threesix.ai +- Git repository: https://git.threesix.ai/jordan/testfix.git