Update .gitignore to include scripts for loading environment variables and Git credentials. Remove obsolete documentation files including 100_PERCENT_LINK_VERIFICATION_ACHIEVED.md, CROSS_REFERENCE_VERIFICATION_REPORT.md, DOCUMENT_RELATIONSHIP_VISUALIZATION.md, and several project management reports to streamline the repository and enhance maintainability. Revise DOCUMENT_RELATIONSHIP_MAP.md to correct link paths and add a new section for visual specifications.

This commit is contained in:
defiQUG
2025-12-09 02:28:28 -08:00
parent b64b9cef3c
commit deef0051b3
126 changed files with 18365 additions and 573 deletions

12
scripts/load_env.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Load environment variables from .env file
if [ -f .env ]; then
export $(grep -v '^#' .env | xargs)
echo "Environment variables loaded from .env"
echo "GITHUB_TOKEN is set: ${GITHUB_TOKEN:0:10}..."
else
echo "Error: .env file not found"
exit 1
fi