-
-
Notifications
You must be signed in to change notification settings - Fork 0
README
Truong Le Vinh Phuc edited this page Jun 21, 2025
·
1 revision
This directory contains all the markdown files for the Cloud-Native E-commerce Platform GitHub Wiki. Follow these instructions to set up the wiki.
-
Enable the Wiki feature in your GitHub repository:
- Go to your GitHub repository
- Click on "Settings"
- Scroll down to "Features" section
- Make sure "Wikis" is checked/enabled
-
Clone the wiki repository:
# Clone the wiki repository (separate from the main repo) git clone https://github.com/sloweyyy/cloud-native-ecommerce-platform.wiki.git cd cloud-native-ecommerce-platform.wiki
-
Copy the wiki files:
# Copy all markdown files from the wiki directory to the wiki repository cp -r /path/to/cloud-native-ecommerce-platform/wiki/*.md .
-
Rename Home.md:
# Ensure Home.md exists (GitHub wiki uses this as the landing page) # If it doesn't exist, rename one of your files to Home.md
-
Commit and push to the wiki:
git add . git commit -m "docs: add comprehensive wiki documentation" git push origin master
-
Verify the wiki:
- Go to your GitHub repository
- Click on the "Wiki" tab
- You should see all your wiki pages properly formatted and linked
The wiki consists of the following pages:
- Home: Overview and main navigation
- Architecture: System architecture and design patterns
- Microservices: Details about each microservice
- Deployment: Deployment guides and infrastructure setup
- Development: Development setup and coding standards
- API Documentation: API endpoints and usage
- Monitoring: Observability and monitoring setup
- Contributing: How to contribute to the project
- Troubleshooting: Common issues and solutions
For future updates to the wiki:
- Clone the wiki repository if you haven't already
- Make your changes
- Commit and push directly to the wiki repository
Alternatively, you can edit the wiki directly through the GitHub web interface.
For images referenced in the wiki:
- Upload them to the wiki repository
- Reference them in markdown using relative paths
- Or use the GitHub web interface to upload images when editing wiki pages