Implemented a new endpoint for exporting debug data related to channel scheduling, allowing users to download an archive containing channel settings, slot states, and trace information. Updated the frontend to include a button for triggering the export, along with necessary API adjustments for handling the download. Enhanced localization strings to support the new debug export feature in both English and Russian. Updated .gitignore to include debug export files while ensuring the directory structure is maintained for development.
92 lines
1.5 KiB
Plaintext
92 lines
1.5 KiB
Plaintext
# ---> VisualStudioCode
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
!.vscode/*.code-snippets
|
|
|
|
# Local History for Visual Studio Code
|
|
.history/
|
|
|
|
# Built Visual Studio Code Extensions
|
|
*.vsix
|
|
|
|
# ---> VisualStudio
|
|
# User-specific files
|
|
*.rsuser
|
|
*.suo
|
|
*.user
|
|
*.userosscache
|
|
*.sln.docstates
|
|
|
|
# Mono auto generated files
|
|
mono_crash.*
|
|
|
|
# Build results
|
|
[Dd]ebug/
|
|
[Dd]ebugPublic/
|
|
[Rr]elease/
|
|
[Rr]eleases/
|
|
x64/
|
|
x86/
|
|
[Ww][Ii][Nn]32/
|
|
[Aa][Rr][Mm]/
|
|
[Aa][Rr][Mm]64/
|
|
bld/
|
|
[Bb]in/
|
|
[Oo]bj/
|
|
[Ll]og/
|
|
[Ll]ogs/
|
|
|
|
.vs/
|
|
|
|
[Tt]est[Rr]esult*/
|
|
[Bb]uild[Ll]og.*
|
|
|
|
*.VisualState.xml
|
|
TestResult.xml
|
|
nunit-*.xml
|
|
|
|
BenchmarkDotNet.Artifacts/
|
|
|
|
project.lock.json
|
|
project.fragment.lock.json
|
|
artifacts/
|
|
|
|
*.pdb
|
|
*.log
|
|
*.tlog
|
|
|
|
# NuGet Packages
|
|
*.nupkg
|
|
*.snupkg
|
|
**/[Pp]ackages/*
|
|
!**/[Pp]ackages/build/
|
|
|
|
# Others
|
|
*.pfx
|
|
*.publishsettings
|
|
|
|
# Node
|
|
node_modules/
|
|
dist/
|
|
dist-ssr/
|
|
|
|
# Local environment files (secrets) — keep .env.example, ignore real .env
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Локальное медиахранилище для dev-запуска (Storage__RootPath в appsettings.Development.json)
|
|
.dev-media/
|
|
|
|
# Отчёты покрытия (артефакт dotnet test / CI)
|
|
coverage/
|
|
TestResults/
|
|
|
|
# ---> TeleWave
|
|
# Отладочные дампы каналов: архивы кладёт сюда бэкенд (секция Debug:ExportDirectory).
|
|
debug-exports/*
|
|
!debug-exports/.gitkeep
|