Consolidated 16+ top-level categories into 8 clear functional groups (AI, Development, Home-Automation, Infrastructure, Lifestyle, PKM, Professional, Backup). Merged duplicate files (OpenRouter.md, Github.md) and archived originals. This simplifies navigation and improves long-term maintainability. (vault changes by Claude Code)
12 lines
219 B
Markdown
Executable File
12 lines
219 B
Markdown
Executable File
|
|
```
|
|
|
|
CREATE DATABASE scribe;
|
|
CREATE USER scribe WITH PASSWORD 'hass';
|
|
GRANT ALL PRIVILEGES ON DATABASE scribe TO scribe;
|
|
|
|
\c scribe
|
|
CREATE EXTENSION IF NOT EXISTS timescaledb;
|
|
GRANT ALL ON SCHEMA public TO scribe;
|
|
```
|