The /builds/ page returned 404 because website/content/builds/ was fully gitignored — Hugo had no content to generate the section landing page. Fix: - Narrow .gitignore to only ignore year-subdirectories (YYYY/) so that _index.md can be committed as a static fallback. - Add website/content/builds/_index.md with section description. - Enhance generate_build_history.py to fetch and display commit datetime alongside title, and render _index.md as a flat list of all builds (newest-day first) so the section landing page is useful immediately. Fixes #82 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
110 lines
1.5 KiB
Plaintext
110 lines
1.5 KiB
Plaintext
# --- Flutter/Dart ---
|
|
coverage/
|
|
.dart_tool/
|
|
.dart-tool/
|
|
.packages
|
|
pubspec.lock
|
|
build/
|
|
*.g.dart
|
|
*.freezed.dart
|
|
|
|
# --- IDEs ---
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
|
|
# --- OS / System ---
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# --- Environment & Secrets ---
|
|
assets/changelog.txt
|
|
.env
|
|
.env.local
|
|
.envrc
|
|
.direnv/
|
|
|
|
# --- Android ---
|
|
android/.gradle/
|
|
android/local.properties
|
|
android/app/google-services.json
|
|
android/key.properties
|
|
android/app/src/main/java/io/flutter/plugins/
|
|
.android/
|
|
Android/
|
|
.gradle/
|
|
.emulator_console_auth_token
|
|
|
|
# --- iOS ---
|
|
ios/Pods/
|
|
ios/Flutter/Generated.xcconfig
|
|
ios/Flutter/ephemeral/
|
|
ios/Flutter/flutter_export_environment.sh
|
|
ios/Runner/GeneratedPluginRegistrant.*
|
|
*.xcworkspace/
|
|
|
|
# --- macOS ---
|
|
macos/Pods/
|
|
macos/Flutter/GeneratedPluginRegistrant.swift
|
|
macos/Flutter/ephemeral/
|
|
|
|
# --- Linux ---
|
|
linux/flutter/ephemeral/
|
|
linux/flutter/generated_plugin_registrant.*
|
|
linux/flutter/generated_plugins.cmake
|
|
|
|
# --- Flutter Metadata ---
|
|
.flutter-plugins
|
|
.flutter-plugins-dependencies
|
|
.metadata
|
|
|
|
# --- Tools & Cache ---
|
|
.fvm/
|
|
fvm/
|
|
.qwen
|
|
.claude
|
|
.task
|
|
.atuin/
|
|
.cache/
|
|
.config/
|
|
.local/
|
|
.nix-profile
|
|
.npm/
|
|
.pub-cache/
|
|
.dartServer/
|
|
.flutter
|
|
.dart-cli-completion/
|
|
snap/
|
|
|
|
# --- User Configuration (Home Dir Junk) ---
|
|
.bash_logout
|
|
.bashrc
|
|
.profile
|
|
.zcompdump
|
|
.zshrc
|
|
.gitconfig
|
|
.lesshst
|
|
.tmux.conf
|
|
.ssh/
|
|
|
|
# --- Logs & Data ---
|
|
*.log
|
|
runner-data/
|
|
sharedinbox-runner/runner-data/
|
|
.gemini/
|
|
.rustup/
|
|
|
|
# --- Hugo ---
|
|
website/public/
|
|
website/resources/
|
|
website/.hugo_build.lock
|
|
website/content/builds/[0-9]*/
|
|
|
|
.copilot/
|
|
.dotnet/
|
|
.vscode-server/
|
|
.wget-hsts
|
|
|
|
tmp/
|
|
.claude*
|