Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 115 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
# Dependencies -- Docker installs these fresh via npm ci
node_modules/

# Build output -- generated during the Docker build, not copied in
dist/
output/

# pnpm
.pnpm-store

# Astro cache -- regenerated during build
.astro/

# Version control
.git/
.gitignore
.gitattributes

# Editor
.vscode/
.idea/
*.swp
*.swo

# Docker files themselves
Dockerfile*
docker-compose*
.dockerignore

# Secrets -- never sent to Docker build context
secrets/

# Env files
.env
.env.*
*.env

# Docs / misc
README*
LICENSE
*.md

# AI LLM Tool Directories

# Anthropic / Claude
.claude/

# OpenAI / ChatGPT / Codex
.openai/

# GitHub Copilot
.github/copilot/
.copilot/

# Cursor
.cursor/
.cursorignore
.cursorindexingignore

# Codeium
.codeium/

# Tabnine
.tabnine/

# Amazon CodeWhisperer / Q Developer
.aws/amazonq/
.amazonq/

# Google Gemini / Duet AI
.gemini/

# Cody (Sourcegraph)
.cody/

# Continue.dev
.continue/

# Aider
.aider/
.aider.tags.cache.v3/
.aider.chat.history.md
.aider.input.history

# Windsurf (Codeium)
.windsurf/

# Zed AI
.zed/

# Pieces
.pieces/

# Supermaven
.supermaven/

# Replit AI
.replit/
replit.nix

# v0 (Vercel)
.v0/

# Bolt (StackBlitz)
.bolt/

# Devin
.devin/

# Sweep AI
.sweep/

# Copilot4PRs / CodeRabbit
.coderabbit/
.coderabbit.yaml
23 changes: 1 addition & 22 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,22 +1 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
pnpm-lock.yaml -diff
57 changes: 57 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Deploy to GitHub Pages

on:
push:
branches: [gh-pages]
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: pages
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 24

- name: Setup pnpm
uses: pnpm/action-setup@v4

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build
run: pnpm run build
env:
SITE_URL: https://robertlech.com
BASE_PATH: /
GITHUB_USER: robert-7
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist

deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
Loading
Loading