Quick Start Guide¶
Get your U.WIKI instance running in just a few minutes!
1. Clone the Repository¶
2. Create Virtual Environment¶
3. Install Dependencies¶
4. Start the Development Server¶
Your wiki will be available at http://localhost:8000
That's it!
You now have a fully functional wiki running locally!
5. Making Changes¶
- Edit Markdown files in the
docs/
directory - Save your changes - the site will auto-reload
- View updates in your browser instantly
Common Tasks¶
Adding a New Page¶
- Create a new
.md
file in thedocs/
directory - Add it to the
nav
section inmkdocs.yml
- The page will appear in the navigation
Changing the Theme¶
Edit mkdocs.yml
and modify the theme
section:
Building for Production¶
This creates a site/
directory with static HTML files ready for deployment.
Next Steps¶
- Learn about Markdown Syntax
- Explore Configuration Options
- Read about Organizing Content