Skip to content

Commit e4ed2fc

Browse files
committed
feat: Implement Task Management Component with CRUD functionality
- Added TaskList component to manage tasks with create, read, update, and delete operations. - Integrated FluentUI components for UI consistency and responsiveness. - Implemented API service for task management, including fetching, creating, updating, and deleting tasks. - Added basic styling and layout for the application. - Created end-to-end tests for task management features using Playwright. - Set up development environment with Vite and Playwright for testing. - Added setup and start scripts for easier development workflow. Signed-off-by: Andre Bossard <anbossar@microsoft.com>
0 parents  commit e4ed2fc

28 files changed

Lines changed: 3982 additions & 0 deletions

.claude/settings.local.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(chmod:*)",
5+
"Bash(source venv/bin/activate)",
6+
"Bash(python app.py:*)",
7+
"Bash(pip install:*)",
8+
"Bash(lsof:*)",
9+
"Bash(xargs kill -9)",
10+
"Bash(kill:*)",
11+
"Bash(pkill:*)",
12+
"Bash(curl:*)",
13+
"Bash(npm run dev:*)",
14+
"Bash(python3:*)",
15+
"Bash(npx playwright install chromium)",
16+
"Bash(npx playwright test --project=chromium --reporter=line)",
17+
"Bash(npx playwright test:*)"
18+
],
19+
"deny": [],
20+
"ask": []
21+
}
22+
}

.gitignore

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
venv/
8+
env/
9+
ENV/
10+
.venv
11+
*.egg-info/
12+
dist/
13+
build/
14+
15+
# Node.js
16+
node_modules/
17+
npm-debug.log*
18+
yarn-debug.log*
19+
yarn-error.log*
20+
package-lock.json
21+
.pnpm-debug.log*
22+
23+
# Build outputs
24+
frontend/dist/
25+
frontend/build/
26+
27+
# IDE
28+
.vscode/
29+
.idea/
30+
*.swp
31+
*.swo
32+
*~
33+
34+
# OS
35+
.DS_Store
36+
Thumbs.db
37+
38+
# Testing
39+
/test-results/
40+
/playwright-report/
41+
/playwright/.cache/
42+
43+
# Environment
44+
.env
45+
.env.local
46+
.env.*.local
47+
48+
# Logs
49+
*.log
50+
logs/

0 commit comments

Comments
 (0)