https://github.com/fusioninventory/documentation
Documentation of FusionInventory
https://github.com/fusioninventory/documentation
Last synced: 12 months ago
JSON representation
Documentation of FusionInventory
- Host: GitHub
- URL: https://github.com/fusioninventory/documentation
- Owner: fusioninventory
- License: cc-by-sa-4.0
- Created: 2022-05-02T20:01:12.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-10-24T19:40:28.000Z (over 2 years ago)
- Last Synced: 2025-01-15T11:10:46.017Z (over 1 year ago)
- Size: 3.97 MB
- Stars: 7
- Watchers: 6
- Forks: 13
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: docs/security.md
Awesome Lists containing this project
README
Find the documentation [here](https://documentation.fusioninventory.org/)
## Run mkdocs in dev mode
Install virtualenv:
```console
apt install virtualenv
```
Clone the repository:
```console
git clone https://github.com/fusioninventory/documentation.git
cd documentation
```
Create a virtual environment:
```console
virtualenv venv
```
Activate your virtual environment:
```console
source venv/bin/activate
```
Install requirement for mkdocs
```console
pip install -r requirements.txt
```
Run development instance:
```console
mkdocs serve
```