-
Notifications
You must be signed in to change notification settings - Fork 0
README
HMAHD edited this page Jan 31, 2026
·
1 revision
This directory contains all documentation pages for the Luvora GitHub wiki.
- Go to your repository: https://github.com/HMAHD/Luvora
- Click on the Wiki tab
- Click Create the first page (or New Page if wiki exists)
- For each file in this
wiki/directory:- Create a new page
- Use the filename (without .md) as the page title
- Copy the content from the file
- Click Save Page
GitHub wikis are separate git repositories. You can clone and manage them like code:
# Clone the wiki repository
git clone https://github.com/HMAHD/Luvora.wiki.git
# Copy all wiki files
cp wiki/*.md Luvora.wiki/
# Commit and push
cd Luvora.wiki
git add .
git commit -m "Add complete documentation"
git push origin master- Home.md - Wiki homepage with navigation
- Production-Deployment.md - Production deployment guide
- Staging-Deployment.md - Staging deployment guide
- Nginx-Configuration.md - Nginx configs for both environments
- PM2-Process-Management.md - PM2 commands and troubleshooting
- GitHub-Actions.md - CI/CD workflow documentation
Once uploaded, the wiki will be accessible at: https://github.com/HMAHD/Luvora/wiki
After moving documentation to the wiki, you can delete these files from the main repository:
# Remove documentation files
rm -rf docs/
# Keep only essential files in repo
git add -u
git commit -m "docs: move documentation to GitHub wiki"
git push- Keep this
wiki/directory in your repo as source of truth - Edit files here, then update the wiki
- Or enable wiki contributors to edit directly on GitHub