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:
47
Templates/project-template.md
Normal file
47
Templates/project-template.md
Normal file
@@ -0,0 +1,47 @@
|
||||
---
|
||||
project:
|
||||
name: ""
|
||||
status: planning|active|completed|archived
|
||||
category: infrastructure|application|automation|configuration
|
||||
source: ""
|
||||
created: 2026-01-06
|
||||
updated: 2026-01-06
|
||||
description: ""
|
||||
goals: []
|
||||
priority: high|medium|low
|
||||
tags: []
|
||||
---
|
||||
|
||||
# Project:
|
||||
|
||||
## Overview
|
||||
|
||||
## Goals
|
||||
-
|
||||
|
||||
## Components
|
||||
|
||||
### Key Files
|
||||
|
||||
### Documentation
|
||||
|
||||
## Related Projects
|
||||
|
||||
## Tasks
|
||||
```dataview
|
||||
TASK
|
||||
FROM "<project-folder>/tasks"
|
||||
WHERE !completed
|
||||
SORT priority ASC, file.name ASC
|
||||
```
|
||||
|
||||
## Recent Changes
|
||||
```dataview
|
||||
TABLE file.mtime AS Modified, file.link AS File
|
||||
FROM "<project-folder>/"
|
||||
WHERE file.mtime >= date(today) - dur(7 days)
|
||||
SORT file.mtime DESC
|
||||
LIMIT 10
|
||||
```
|
||||
|
||||
## Notes
|
||||
35
Templates/script-template.md
Normal file
35
Templates/script-template.md
Normal file
@@ -0,0 +1,35 @@
|
||||
---
|
||||
script:
|
||||
name: ""
|
||||
type: shell|python|automation
|
||||
path: ""
|
||||
purpose: ""
|
||||
usage: ""
|
||||
requires: []
|
||||
created: 2026-01-06
|
||||
updated: 2026-01-06
|
||||
---
|
||||
|
||||
# Script:
|
||||
|
||||
## Purpose
|
||||
|
||||
## Usage
|
||||
|
||||
```bash
|
||||
# Basic usage
|
||||
./script.sh
|
||||
|
||||
# With arguments
|
||||
./script.sh --option value
|
||||
```
|
||||
|
||||
## Requirements
|
||||
|
||||
## Examples
|
||||
|
||||
## Configuration
|
||||
|
||||
## Notes
|
||||
|
||||
## Related
|
||||
44
Templates/service-template.md
Normal file
44
Templates/service-template.md
Normal file
@@ -0,0 +1,44 @@
|
||||
---
|
||||
service:
|
||||
name: ""
|
||||
type: docker|vm|host
|
||||
url: ""
|
||||
category: media|infrastructure|development|storage|identity|automation
|
||||
status: active|inactive|maintenance
|
||||
docker_image: ""
|
||||
port: ""
|
||||
nfs_mount: ""
|
||||
depends_on: []
|
||||
created: 2026-01-06
|
||||
updated: 2026-01-06
|
||||
---
|
||||
|
||||
# Service:
|
||||
|
||||
## Overview
|
||||
|
||||
## Configuration
|
||||
|
||||
### Docker Compose
|
||||
```yaml
|
||||
|
||||
```
|
||||
|
||||
### Environment Variables
|
||||
```yaml
|
||||
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
## Health Checks
|
||||
|
||||
## Maintenance
|
||||
|
||||
### Backup
|
||||
|
||||
### Update Procedure
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
## Related
|
||||
28
Templates/task-template.md
Normal file
28
Templates/task-template.md
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
task:
|
||||
project:
|
||||
status: pending|in-progress|completed|blocked
|
||||
priority: high|medium|low
|
||||
assignee:
|
||||
created:
|
||||
due:
|
||||
---
|
||||
|
||||
# Task:
|
||||
|
||||
## Description
|
||||
|
||||
## Requirements
|
||||
|
||||
## Implementation Notes
|
||||
|
||||
## Checklist
|
||||
- [ ] Step 1
|
||||
- [ ] Step 2
|
||||
- [ ] Step 3
|
||||
|
||||
## Notes
|
||||
|
||||
## Related
|
||||
- Related Task:
|
||||
- Related File:
|
||||
Reference in New Issue
Block a user