From 8ce997fe3ba146148f8250c6e67530ea177373aa Mon Sep 17 00:00:00 2001 From: stan44 Date: Sat, 21 Feb 2026 23:28:08 -0600 Subject: [PATCH] Add Home --- Home.md | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 Home.md diff --git a/Home.md b/Home.md new file mode 100644 index 0000000..9a664d8 --- /dev/null +++ b/Home.md @@ -0,0 +1,59 @@ +# Project Journal Wiki + +Welcome to the Project Journal documentation hub. + +Project Journal is an offline-first journaling system with encrypted monthly vaults, desktop + CLI workflows, and optional local AI support. + +## Wiki Pages + +Use these pages as your Gitea wiki starter set: + +- `Home` (this page) +- `Setup and Installation` (`WIKI_SETUP.md`) +- `CLI Reference` (`WIKI_CLI.md`) +- `Vaults and Data Handling` (`WIKI_VAULTS.md`) +- `C# Migration Status` (`WIKI_CSHARP_MIGRATION.md`) +- `Troubleshooting` (`WIKI_TROUBLESHOOTING.md`) +- `Development Workflow` (`WIKI_DEVELOPMENT_WORKFLOW.md`) + +## Quick Start (Python Baseline) + +### Windows (CPU default) + +```powershell +cd Project_Journal +py -3.14 -m venv .venv +.\.venv\Scripts\Activate.ps1 +python -m pip install --upgrade pip +python -m pip install --extra-index-url https://download.pytorch.org/whl/cpu -r requirements_cpu_only.txt +python .\journal\run_desktop.py +``` + +### Linux (CPU default) + +```bash +cd Project_Journal +python3.14 -m venv .venv +source .venv/bin/activate +python -m pip install --upgrade pip +python -m pip install --extra-index-url https://download.pytorch.org/whl/cpu -r requirements_cpu_only.txt +python ./journal/run_desktop.py +``` + +## Current Direction + +- Python backend remains the active baseline. +- C# backend migration is in progress in `journal-master/journal/`. +- Security posture target is HIPAA-capable architecture and safeguards (not a legal compliance certification claim). + +## Core References + +- Project readme: `README.md` +- Python CLI: `journal/cli/main.py` +- Python storage and vault logic: `journal/core/storage.py` +- C# backend readme: `journal-master/journal/README.md` +- C# minimal machine setup: `journal-master/journal/MINIMAL_MACHINE_SETUP.md` + +## Safety Notice + +Project Journal is a software tool and not a replacement for licensed mental health care, emergency services, or crisis intervention.