-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup-docs.sh
More file actions
executable file
·42 lines (34 loc) · 1.16 KB
/
Copy pathsetup-docs.sh
File metadata and controls
executable file
·42 lines (34 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Ordnerstruktur erstellen
mkdir -p docs/{concept,architecture,features/integrations,development,planning}
# Concept Docs
touch docs/concept/vision.md
touch docs/concept/why-neurodivergent.md
touch docs/concept/use-cases.md
# Architecture Docs
touch docs/architecture/system-overview.md
touch docs/architecture/components.md
touch docs/architecture/data-model.md
touch docs/architecture/tech-stack.md
# Features Docs
touch docs/features/core-features.md
touch docs/features/document-scanner.md
touch docs/features/ai-processor.md
touch docs/features/reminder-engine.md
touch docs/features/integrations/calendar.md
touch docs/features/integrations/smart-home.md
touch docs/features/integrations/paperless-ngx.md
# Development Docs
touch docs/development/setup.md
touch docs/development/api-reference.md
touch docs/development/deployment.md
touch docs/development/contributing.md
# Planning Docs
touch docs/planning/roadmap.md
touch docs/planning/milestones.md
touch docs/planning/decisions.md
# CONTRIBUTING.md im Root
touch CONTRIBUTING.md
# Git add und commit
git add .
git commit -m "docs: initialize project documentation structure"
echo "✅ Dokumentationsstruktur erstellt!"