All Projects → Free60Project → Wiki

Free60Project / Wiki

Archive of free60.org mediawiki

Projects that are alternatives of or similar to Wiki

Jumpdrive
Flash/Rescue SD Card image for PinePhone and PineTab
Stars: ✭ 217 (+161.45%)
Mutual labels:  makefile, hacktoberfest
Libreelec.tv
Just enough OS for KODI
Stars: ✭ 1,358 (+1536.14%)
Mutual labels:  makefile, hacktoberfest
Operating System
🔰 Home Assistant Operating System
Stars: ✭ 1,920 (+2213.25%)
Mutual labels:  makefile, hacktoberfest
Smallest Secured Golang Docker Image
Create the smallest and secured golang docker image based on scratch
Stars: ✭ 229 (+175.9%)
Mutual labels:  makefile, hacktoberfest
Packages
Community maintained packages for OpenWrt. Documentation for submitting pull requests is in CONTRIBUTING.md
Stars: ✭ 2,957 (+3462.65%)
Mutual labels:  makefile, hacktoberfest
Mvvm C Templates
Templates for MVVM-C architecture
Stars: ✭ 27 (-67.47%)
Mutual labels:  makefile, hacktoberfest
Docs
CakePHP CookBook
Stars: ✭ 653 (+686.75%)
Mutual labels:  makefile, hacktoberfest
Monero Gui Guide
Guide for the Monero GUI wallet
Stars: ✭ 36 (-56.63%)
Mutual labels:  makefile, hacktoberfest
Travel Guide
"A travel guide to suggest activities you can do once you arrive to a certain destination. Or you can just browse destinations and check out the different available activities."
Stars: ✭ 82 (-1.2%)
Mutual labels:  hacktoberfest
Make Docker Command
Seamlessly execute commands (composer, bower, compass) in isolation using docker and make.
Stars: ✭ 82 (-1.2%)
Mutual labels:  makefile
Shlink Web Client
A React-based client application for Shlink
Stars: ✭ 81 (-2.41%)
Mutual labels:  hacktoberfest
Graphql Doctrine
Automatic GraphQL types from Doctrine entities
Stars: ✭ 81 (-2.41%)
Mutual labels:  hacktoberfest
Op Build
Buildroot overlay for Open Power
Stars: ✭ 82 (-1.2%)
Mutual labels:  makefile
Fab Speed Dial
Angular Material FAB speed dial
Stars: ✭ 82 (-1.2%)
Mutual labels:  hacktoberfest
Monday
⚡️ A dev tool for microservice developers to run local applications and/or forward others from/to Kubernetes SSH or TCP
Stars: ✭ 1,246 (+1401.2%)
Mutual labels:  hacktoberfest
Binari
Interactive code editor with a live binary tree visual designed to teach new developers the fundamentals of dynamic programming.
Stars: ✭ 82 (-1.2%)
Mutual labels:  hacktoberfest
Vue Leaflet
vue-leaflet compatible with vue3
Stars: ✭ 82 (-1.2%)
Mutual labels:  hacktoberfest
C
Collection of various algorithms in mathematics, machine learning, computer science, physics, etc implemented in C for educational purposes.
Stars: ✭ 11,897 (+14233.73%)
Mutual labels:  hacktoberfest
Free Certifications
Curated list of free courses & certifications
Stars: ✭ 1,241 (+1395.18%)
Mutual labels:  hacktoberfest
Acex
ACE3 Extra misc modules and components
Stars: ✭ 82 (-1.2%)
Mutual labels:  hacktoberfest

Free60 wiki - archive

GitHub Workflow - Build

Free60 MediaWiki archive.

Python framework mkdocs is used to render the Markdown documentation.

Contribute

Contributions are very welcome. Here's how you can help:

  • Add / correct / expand technical information
  • Improve documentation style
  • Correct spelling / grammar
  • Fix links

Workflow

  1. Fork this repo
  2. Make changes
  3. Verify your changes are formatted properly
  4. Send a Pull Request

Step by step instructions

NOTE: The following instructions are targeted towards Unix OS' - needed steps on windows may vary. NOTE 2: You need python3 and python3-venv installed. Please look at your OS' package manager to find the correct packages.

  1. At first: Fork the repository to your account!

  2. Clone the forked repository (change to your actual username)

# SSH
git clone [email protected]:<username>/wiki.git

or

# HTTPS
git clone https://github.com/<username>/wiki.git
  1. Prepare your python virtual environment and dependencies
# Navigate to the cloned repo
cd wiki/

# Create a python3 virtual environment in your cloned repository
python -m venv venv

# Activate the virtual environment
source venv/bin/activate
  1. Install needed python dependencies using python package manager -> pip
pip install mkdocs mkdocs-material
  1. At this point, load up the clone repository in a text editor that has live-markdown preview function.
  1. When you are done, use the following steps to build & preview the documentation / changes locally.

Build the documentation

make build

Serve the documentation

make serve
  1. Once you are happy and the added changes are looking proper, you are ready to submit your work.

Add modified files for commiting

git add docs/<edited_file>.md
git add docs/<edited_file_2>.md
...

Create a new commit

git commit

# Now in the upcoming editor, describe the changes you made.

Push the changes to your forked repository

git push
  1. Send a Pull Request :)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].