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
2 changes: 1 addition & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ show_next_steps() {
echo
echo " Documentation:"
echo " • Read AGENTS.md for a complete sitemap and bash commands"
echo " • Read QUICKSTART.md for quick onboarding"
echo " • Read README.md Quick Start section for quick onboarding"
echo " • Read README.md for project overview"
echo
echo "Using GitHub Copilot Agents:"
Expand Down
22 changes: 22 additions & 0 deletions cleanup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
###############################################################################

# EXPECTED_FILES=(
# ".cursor/README.md"
# ".cursor/agents/README.md"
# ".cursor/rules/code-review.md"
# ".cursor/rules/documentation.md"
# ".cursor/rules/general.md"
Expand All @@ -60,6 +62,7 @@
# ".github/agents/test-specialist.agent.md"
# ".github/workflows/security-scan.yml"
# ".gitignore"
# ".jules/bolt.md"
# "AGENTS.md"
# "CLAUDE.md"
# "CURSOR.md"
Expand All @@ -70,6 +73,7 @@
# "QWEN.md"
# "README.md"
# "SUPABASE.md"
# "apt/README.md"
# "apt/ansible/packages.txt"
# "apt/code-review/packages.txt"
# "apt/common/packages.txt"
Expand All @@ -83,7 +87,16 @@
# "bootstrap.sh"
# "cleanup.sh"
# "data/AGENT_PROMPTS.md"
# "data/README.md"
# "data/configs/README.md"
# "data/examples/README.md"
# "data/schemas/README.md"
# "docs/AGENT_PROMPTS.md"
# "docs/README.md"
# "docs/api/README.md"
# "docs/guides/README.md"
# "docs/reference/README.md"
# "nix/README.md"
# "nix/ansible/flake.nix"
# "nix/ansible/shell.nix"
# "nix/code-review/flake.nix"
Expand All @@ -105,8 +118,17 @@
# "nix/wrangler/flake.nix"
# "nix/wrangler/shell.nix"
# "src/AGENT_PROMPTS.md"
# "src/README.md"
# "src/agents/README.md"
# "src/scripts/README.md"
# "src/scripts/performance/README.md"
# "src/scripts/performance/benchmark_apt.sh"
# "src/scripts/performance/check_connectivity.sh"
# "src/scripts/validate_agents.py"
# "src/utils/README.md"
# "terraform/.gitignore"
# "terraform/README.md"
# "terraform/examples/README.md"
# "terraform/examples/worker.js"
# "terraform/main.tf"
# "terraform/modules/dns/main.tf"
Expand Down
11 changes: 2 additions & 9 deletions terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
# CloudFlare Infrastructure Configuration
# This file defines the main infrastructure resources for CloudFlare deployment

terraform {
required_version = ">= 1.0"

required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
version = "~> 4.0"
}
}
# Version constraints are defined in versions.tf

terraform {
# Uncomment and configure backend for remote state management
# backend "s3" {
# bucket = "your-terraform-state-bucket"
Expand Down