-
Notifications
You must be signed in to change notification settings - Fork 0
README
This directory contains all the documentation formatted for GitHub Wiki.
- Go to your repository on GitHub
- Click the "Wiki" tab
- Click "Create the first page"
- Copy the content from
wiki/Home.mdinto the wiki editor - For each additional page, click "New Page" and copy the corresponding file content
GitHub wikis are actually Git repositories. You can clone and push to them directly:
# Clone the wiki repository
git clone https://github.com/yourusername/flight_budget.wiki.git
# Copy all wiki files
cp -r wiki/* flight_budget.wiki/
# Commit and push
cd flight_budget.wiki
git add .
git commit -m "Initialize wiki documentation"
git push origin masterRun this script from the project root (after enabling the wiki on GitHub):
#!/bin/bash
# Clone wiki repo
git clone https://github.com/yourusername/flight_budget.wiki.git temp_wiki
# Copy files
cp wiki/*.md temp_wiki/
# Push changes
cd temp_wiki
git add .
git commit -m "Update wiki documentation"
git push origin master
# Cleanup
cd ..
rm -rf temp_wikiGitHub wiki pages use the following naming convention:
- Spaces in links become hyphens in filenames
-
Home.mdis the main landing page -
Quick-Start.mdis accessed via the "Quick Start" link
When you update documentation:
- Update the corresponding
.mdfile in thedocs/directory (source of truth) - Copy the updated file to
wiki/with the appropriate name - Push changes to the wiki repository using one of the methods above
If you prefer to keep documentation in the main repository instead of a separate wiki:
- Keep the
wiki/directory in the main repo - Update the main README.md to link to wiki files
- GitHub will render the markdown files directly in the browser
Example links in README.md:
- [Quick Start](wiki/Quick-Start.md)
- [Aircraft Management](wiki/Aircraft-Management.md)This approach keeps everything in one repository and maintains version control history for documentation.
π View on GitHub | π³ Docker Hub
π Report Issue | π¬ Discussions
License: MIT License | Copyright (c) 2024-2025 FliteAxis
π Getting Started
π¦ Deployment
π§ Development
π Security
- Security Setup Guide
- Security CI/CD Pipeline
- Code Quality & Linting
- SBOM Management
- Vulnerability Scanning
π Dependencies
π³ Docker
π Reference
π Links