Update project configuration and documentation for Reference Board Viewer. Add .direnv support for environment management, enhance README with quick start instructions, and update flake.nix with additional dependencies including pydantic-settings and bcrypt. Introduce quick-start.sh and test-auth.sh scripts for streamlined setup and authentication testing. Remove obsolete planning and task documents to clean up the repository.

This commit is contained in:
Danilo Reyes
2025-11-01 23:55:07 -06:00
parent a95a4c091a
commit 011204188d
13 changed files with 329 additions and 3104 deletions

View File

@@ -42,7 +42,7 @@
}, 1500);
} catch (err) {
const apiError = err as ApiError;
error = apiError.error || apiError.detail || 'Registration failed. Please try again.';
error = apiError.error || (apiError.details as any)?.detail || 'Registration failed. Please try again.';
} finally {
isLoading = false;
}