add cloudflare worker that serves ANSI terminal UI when site is accessed via curl/wget/terminal clients. browsers get the normal astro site through proxy to pages. - user-agent detection for terminal clients - ANSI 256-color rendering with box-drawing - content matches site aesthetic (red/cyan accent) - removes suspicious HTML_MARKER from consts.ts
46 lines
532 B
Plaintext
46 lines
532 B
Plaintext
# build output
|
|
dist/
|
|
# generated types
|
|
.astro/
|
|
|
|
# dependencies
|
|
node_modules/
|
|
|
|
# logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
|
|
# environment variables
|
|
.env
|
|
.env.production
|
|
src/utils/.env
|
|
|
|
# macOS-specific files
|
|
.DS_Store
|
|
|
|
# jetbrains setting folder
|
|
.idea/
|
|
|
|
# wrangler files
|
|
.wrangler
|
|
.dev.vars*
|
|
!.dev.vars.example
|
|
!.env.example
|
|
|
|
# rust build artifacts
|
|
worker/target/
|
|
worker/build/
|
|
worker/node_modules/
|
|
|
|
.specstory/**
|
|
.specstory/
|
|
.cursorindexingignore
|
|
|
|
# AGENTS.md symlink
|
|
AGENTS.md
|
|
GEMINI.md
|
|
.playwright-mcp/
|