Update HOME

stan44 2026-02-22 02:31:28 -06:00
parent c9dbc48fc5
commit a85c1d1c7e

@ -1,59 +1,59 @@
# Project Journal Wiki # Project Journal Wiki
Welcome to the Project Journal documentation hub. 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. Project Journal is an offline-first journaling system with encrypted monthly vaults, desktop + CLI workflows, and optional local AI support.
## Wiki Pages ## Wiki Pages
Use these pages as your Gitea wiki starter set: Use these pages as your Gitea wiki starter set:
- `Home` (this page) - `Home` (this page)
- `Setup and Installation` (`WIKI_SETUP.md`) - `Setup and Installation` (`WIKI_SETUP.md`)
- `CLI Reference` (`WIKI_CLI.md`) - `CLI Reference` (`WIKI_CLI.md`)
- `Vaults and Data Handling` (`WIKI_VAULTS.md`) - `Vaults and Data Handling` (`WIKI_VAULTS.md`)
- `C# Migration Status` (`WIKI_CSHARP_MIGRATION.md`) - `C# Migration Status` (`WIKI_CSHARP_MIGRATION.md`)
- `Troubleshooting` (`WIKI_TROUBLESHOOTING.md`) - `Troubleshooting` (`WIKI_TROUBLESHOOTING.md`)
- `Development Workflow` (`WIKI_DEVELOPMENT_WORKFLOW.md`) - `Development Workflow` (`WIKI_DEVELOPMENT_WORKFLOW.md`)
## Quick Start (Python Baseline) ## Quick Start (Python Baseline)
### Windows (CPU default) ### Windows (CPU default)
```powershell ```powershell
cd Project_Journal cd Project_Journal
py -3.14 -m venv .venv py -3.14 -m venv .venv
.\.venv\Scripts\Activate.ps1 .\.venv\Scripts\Activate.ps1
python -m pip install --upgrade pip 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 -m pip install --extra-index-url https://download.pytorch.org/whl/cpu -r requirements_cpu_only.txt
python .\journal\run_desktop.py python .\journal\run_desktop.py
``` ```
### Linux (CPU default) ### Linux (CPU default)
```bash ```bash
cd Project_Journal cd Project_Journal
python3.14 -m venv .venv python3.14 -m venv .venv
source .venv/bin/activate source .venv/bin/activate
python -m pip install --upgrade pip 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 -m pip install --extra-index-url https://download.pytorch.org/whl/cpu -r requirements_cpu_only.txt
python ./journal/run_desktop.py python ./journal/run_desktop.py
``` ```
## Current Direction ## Current Direction
- Python backend remains the active baseline. - Python backend remains the active baseline.
- C# backend migration is in progress in `journal-master/journal/`. - 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). - Security posture target is HIPAA-capable architecture and safeguards (not a legal compliance certification claim).
## Core References ## Core References
- Project readme: `README.md` - Project readme: `README.md`
- Python CLI: `journal/cli/main.py` - Python CLI: `journal/cli/main.py`
- Python storage and vault logic: `journal/core/storage.py` - Python storage and vault logic: `journal/core/storage.py`
- C# backend readme: `journal-master/journal/README.md` - C# backend readme: `journal-master/journal/README.md`
- C# minimal machine setup: `journal-master/journal/MINIMAL_MACHINE_SETUP.md` - C# minimal machine setup: `journal-master/journal/MINIMAL_MACHINE_SETUP.md`
## Safety Notice ## Safety Notice
Project Journal is a software tool and not a replacement for licensed mental health care, emergency services, or crisis intervention. Project Journal is a software tool and not a replacement for licensed mental health care, emergency services, or crisis intervention.