chore(repo): normalize ignore policy and repository metadata paths

This commit is contained in:
José René White Enciso 2026-03-06 08:17:46 -06:00
parent 1b94aa68ed
commit 97de9e9b29
3 changed files with 16 additions and 46 deletions

58
.gitignore vendored
View File

@ -1,53 +1,23 @@
# AgileWebs local orchestration
# Repository orchestration folders (local only)
.repo-tasks/
.repo-context/
.tasks/
.agile/
# Build artifacts
**/[Bb]in/
**/[Oo]bj/
/**/out/
/**/artifacts/
# IDE and editor files
# .NET build outputs
**/bin/
**/obj/
.vs/
.idea/
.vscode/
*.suo
TestResults/
**/TestResults/
*.user
*.userosscache
*.sln.docstates
*.suo
*.rsuser
*.swp
*.swo
# NuGet
# IDE
.idea/
# Package artifacts
*.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
artifacts/

View File

@ -15,7 +15,7 @@ Remove cross-repo source coupling from `Furniture.DAL` and consume shared contra
Repository-level `nuget.config` includes:
- `gitea-org`: `http://192.168.68.156:3000/api/packages/AgileWebs/nuget/index.json`
- `gitea-org`: `http://192.168.10.100:3000/api/packages/AgileWebs/nuget/index.json`
- `nuget.org`
Because feed is currently HTTP, `allowInsecureConnections="true"` is required for the Gitea source.

View File

@ -2,7 +2,7 @@
<configuration>
<packageSources>
<clear />
<add key="gitea-org" value="http://192.168.68.156:3000/api/packages/AgileWebs/nuget/index.json" allowInsecureConnections="true" />
<add key="gitea-org" value="http://192.168.10.100:3000/api/packages/AgileWebs/nuget/index.json" allowInsecureConnections="true" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>