From 063c1a2f2d0725ce4bb6ad382a1919d467a18c2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ren=C3=A9=20White=20Enciso?= Date: Sat, 21 Feb 2026 20:48:50 -0600 Subject: [PATCH] chore(repo): initialize repository structure - Adds base src/tests/docs scaffolding - Preserves planning and documentation artifacts - Applies baseline ignore patterns for .NET and container workflows - Sets development as the working branch --- .gitignore | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0ad8c5f --- /dev/null +++ b/.gitignore @@ -0,0 +1,53 @@ +# AgileWebs local orchestration +.tasks/ +.agile/ + +# Build artifacts +**/[Bb]in/ +**/[Oo]bj/ +/**/out/ +/**/artifacts/ + +# IDE and editor files +.vs/ +.idea/ +.vscode/ +*.suo +*.user +*.userosscache +*.sln.docstates +*.rsuser +*.swp +*.swo + +# NuGet +*.nupkg +*.snupkg +**/packages/* +!**/packages/build/ + +# Test output +**/TestResults/ +*.trx +*.coverage +*.coveragexml + +# Logs +*.log +logs/ + +# Local environment files +.env +.env.* +!.env.example + +# Docker +.docker/ +**/.docker/ +*.pid +docker-compose.override.yml +docker-compose.*.override.yml + +# OS files +.DS_Store +Thumbs.db