From c6177cf539884c4a6a85da4529827a4e960dec27 Mon Sep 17 00:00:00 2001 From: jordan Date: Fri, 30 Jan 2026 06:47:26 +0000 Subject: [PATCH] Initialize project from default template --- .claude/CLAUDE.md | 32 ++++++++++++++++++++++++++++++++ .woodpecker.yml | 22 ++++++++++++++++++++++ Dockerfile | 9 +++++++++ README.md | 21 +++++++++++++++++++++ 4 files changed, 84 insertions(+) create mode 100644 .claude/CLAUDE.md create mode 100644 .woodpecker.yml create mode 100644 Dockerfile create mode 100644 README.md diff --git a/.claude/CLAUDE.md b/.claude/CLAUDE.md new file mode 100644 index 0000000..18f5752 --- /dev/null +++ b/.claude/CLAUDE.md @@ -0,0 +1,32 @@ +# final-1769755645 + +Project deployed to bum2x6s9.threesix.ai via threesix.ai platform. + +## Quick Start + +```bash +# Clone +git clone https://git.threesix.ai/jordan/final-1769755645.git +cd final-1769755645 + +# Build +docker build -t final-1769755645 . + +# Run +docker run -p 8080:8080 final-1769755645 +``` + +## 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://bum2x6s9.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..8ab8b0a --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,22 @@ +steps: + docker: + image: woodpeckerci/plugin-kaniko + settings: + registry: registry.threesix.ai + repo: "final-1769755645" + 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/final-1769755645 final-1769755645=registry.threesix.ai/final-1769755645:${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..2ec7365 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# final-1769755645 + +Deployed at: https://bum2x6s9.threesix.ai + +## Getting Started + +1. Clone the repository +2. Build with Docker: `docker build -t final-1769755645 .` +3. Run locally: `docker run -p 8080:8080 final-1769755645` + +## 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://bum2x6s9.threesix.ai +- Git repository: https://git.threesix.ai/jordan/final-1769755645.git