Initial commit: homelab infrastructure wiki
- Full Obsidian vault content - Host configs (ice, grizzley, ubuntu, proxmox, truenas, panda, hyte) - Media stack documentation - Traefik HA setup - Automation scripts - Bachelor party planning
This commit is contained in:
40
Dashboard/project-status.md
Normal file
40
Dashboard/project-status.md
Normal file
@@ -0,0 +1,40 @@
|
||||
# Project Status Dashboard
|
||||
|
||||
## All Projects
|
||||
```dataview
|
||||
TABLE project.status AS Status,
|
||||
project.category AS Category,
|
||||
file.cday AS Created
|
||||
FROM "**/project.md"
|
||||
SORT project.status ASC, project.category ASC
|
||||
```
|
||||
|
||||
## Active Tasks
|
||||
```dataview
|
||||
TASK
|
||||
FROM "**/tasks"
|
||||
WHERE !completed
|
||||
SORT project ASC, file.name ASC
|
||||
```
|
||||
|
||||
## Recently Modified
|
||||
```dataview
|
||||
TABLE file.link AS File, file.mtime AS Modified
|
||||
FROM ""
|
||||
WHERE file.mtime >= date(today) - dur(7 days) AND !contains(file.path, "node_modules")
|
||||
SORT file.mtime DESC
|
||||
LIMIT 20
|
||||
```
|
||||
|
||||
## Tasks by Project
|
||||
```dataview
|
||||
TABLE rows.file.tasks.length AS TotalTasks
|
||||
FROM "**/project.md"
|
||||
GROUP BY project.name AS Project
|
||||
```
|
||||
|
||||
## Quick Links
|
||||
- [[../homelab/project.md|Homelab Infrastructure]]
|
||||
- [[../automation/project.md|Automation Scripts]]
|
||||
- [[../platform-config/project.md|Platform Configuration]]
|
||||
- [[../ai-assistant/project.md|AI Assistant Config]]
|
||||
Reference in New Issue
Block a user