Initial commit: project structure, bez lokalnych secrets
This commit is contained in:
93
.gitignore
vendored
Normal file
93
.gitignore
vendored
Normal file
@@ -0,0 +1,93 @@
|
||||
# Build artifacts
|
||||
bin/
|
||||
obj/
|
||||
out/
|
||||
Generated/
|
||||
|
||||
# Rider / JetBrains
|
||||
.idea/
|
||||
*.sln.iml
|
||||
|
||||
# User-specific files
|
||||
*.user
|
||||
*.userosscache
|
||||
*.suo
|
||||
*.csproj.user
|
||||
*.swp
|
||||
*~
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
|
||||
# ASP.NET
|
||||
*.db
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
|
||||
# Visual Studio Code
|
||||
.vscode/
|
||||
.vscode/*
|
||||
|
||||
# MAUI / Mobile (Xcode/iOS)
|
||||
**/bin/
|
||||
**/obj/
|
||||
**/platforms/
|
||||
**/*.apk
|
||||
**/*.aab
|
||||
**/*.app/
|
||||
**/*.ipa
|
||||
**/*.xcarchive/
|
||||
*.DS_Store
|
||||
|
||||
# Local database files
|
||||
*.mdf
|
||||
*.ldf
|
||||
|
||||
# dotnet tools & backups
|
||||
*.nupkg
|
||||
*.snupkg
|
||||
.nuget/
|
||||
*.bak
|
||||
*.tmp
|
||||
|
||||
# Secret config files (if any)
|
||||
appsettings.*.local.json
|
||||
appsettings.Local.json
|
||||
secrets.json
|
||||
|
||||
# EF Core tooling cache
|
||||
EFCoreTools.dotnet-tools.cache
|
||||
|
||||
# System files
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
|
||||
# dotnet CLI artifacts
|
||||
project.lock.json
|
||||
project.fragment.lock.json
|
||||
|
||||
# Others
|
||||
_ReSharper*/
|
||||
*.resharper
|
||||
*.dotCover
|
||||
.idea/
|
||||
*.coverage
|
||||
*.coveragejson
|
||||
TestResult.xml
|
||||
TestResults/
|
||||
nunit-*.xml
|
||||
|
||||
# MacOS
|
||||
.DS_Store
|
||||
|
||||
# Rider logs/cache
|
||||
.idea/
|
||||
.idea/.idea.*
|
||||
.idea/*workspace*
|
||||
.idea/httpRequests
|
||||
.idea/indexLayout.xml
|
||||
.idea/tasks.xml
|
||||
.idea/.idea_modules
|
||||
|
||||
Bimix.API/appsettings.Development.json
|
||||
Bimix.UI.Web/appsettings.Development.json
|
||||
Reference in New Issue
Block a user