Improve the UI and tests

This commit is contained in:
Urtzi Alfaro
2025-11-15 21:21:06 +01:00
parent 86d704b354
commit 54b7a5e080
44 changed files with 2268 additions and 1414 deletions

View File

@@ -55,6 +55,13 @@ docker_build(
live_update=[
sync('./frontend/src', '/app/src'),
sync('./frontend/public', '/app/public'),
],
# Ignore test artifacts and reports
ignore=[
'playwright-report/**',
'test-results/**',
'node_modules/**',
'.DS_Store'
]
)
@@ -550,6 +557,9 @@ watch_settings(
'**/*.tmp',
'**/*.tmp.*',
'**/migrations/versions/*.tmp.*',
# Ignore test artifacts and reports (playwright)
'**/playwright-report/**',
'**/test-results/**',
]
)