commit
parent
558f932c23
commit
c9dbc48fc5
@ -50,3 +50,4 @@ Example:
|
||||
|
||||
- Update wiki pages when commands, dependencies, or behavior change.
|
||||
- Keep setup and troubleshooting pages current with real host issues encountered.
|
||||
- For local wiki editing and push flow, use `WIKI_GIT_WORKFLOW.md`.
|
||||
47
WIKI_GIT_WORKFLOW.md
Normal file
47
WIKI_GIT_WORKFLOW.md
Normal file
@ -0,0 +1,47 @@
|
||||
# Wiki Git Workflow (Gitea)
|
||||
|
||||
Use this workflow to edit the project wiki locally and push changes to Gitea without using the web editor.
|
||||
|
||||
Wiki remote:
|
||||
|
||||
`https://gitea.innovativedevsolutions.org/stan44/Project_Journal-Python.wiki.git`
|
||||
|
||||
## One-time setup
|
||||
|
||||
```powershell
|
||||
Set-Location E:\stansshit\Project_Journal
|
||||
git clone https://gitea.innovativedevsolutions.org/stan44/Project_Journal-Python.wiki.git wiki
|
||||
Set-Location .\wiki
|
||||
git config user.name "Your Name"
|
||||
git config user.email "you@example.com"
|
||||
```
|
||||
|
||||
## Daily update flow
|
||||
|
||||
```powershell
|
||||
Set-Location E:\stansshit\Project_Journal\wiki
|
||||
git pull --ff-only
|
||||
```
|
||||
|
||||
Edit or add `*.md` pages, then:
|
||||
|
||||
```powershell
|
||||
Set-Location E:\stansshit\Project_Journal\wiki
|
||||
git add .
|
||||
git commit -m "wiki: update migration docs"
|
||||
git push
|
||||
```
|
||||
|
||||
## Quick check
|
||||
|
||||
```powershell
|
||||
Set-Location E:\stansshit\Project_Journal\wiki
|
||||
git status
|
||||
git log --oneline -n 5
|
||||
```
|
||||
|
||||
## Notes
|
||||
|
||||
- Wiki pages are normal Markdown files in this separate wiki Git repo.
|
||||
- Use short, scoped commits (one topic per commit).
|
||||
- If `git push` fails due to auth, re-run with your preferred credential method (token/credential manager).
|
||||
@ -12,6 +12,7 @@ Use these pages as your Gitea wiki starter set:
|
||||
- `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`)
|
||||
|
||||
@ -42,7 +43,7 @@ python ./journal/run_desktop.py
|
||||
## Current Direction
|
||||
|
||||
- Python backend remains the active baseline.
|
||||
- C# backend migration is in progress
|
||||
- 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
|
||||
Loading…
x
Reference in New Issue
Block a user