Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nextronsystems/asgard-manual
ASGARD Management Center Manual
https://github.com/nextronsystems/asgard-manual
Last synced: about 2 months ago
JSON representation
ASGARD Management Center Manual
- Host: GitHub
- URL: https://github.com/nextronsystems/asgard-manual
- Owner: NextronSystems
- Created: 2020-07-06T13:01:18.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-04T14:54:01.000Z (2 months ago)
- Last Synced: 2024-11-04T15:48:05.809Z (2 months ago)
- Language: PowerShell
- Homepage: https://asgard-manual.nextron-systems.com
- Size: 61.3 MB
- Stars: 10
- Watchers: 5
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog/index.rst
Awesome Lists containing this project
README
# ASGARD Management Center Manual
This repository contains all the sources for our online manual of the ASGARD Management Center.
## How to use
You can either use the online version of this manual, which is hosted on ReadTheDocs, or clone the repository and build it locally.
### Online Version
You can find the online version here:
[https://asgard-manual.nextron-systems.com](https://asgard-manual.nextron-systems.com)
### Offline Version
You have two options if you want to download and use the manual offline.
#### Direct Download
You can navigate to the ReadTheDocs page of the [ASGARD Management Center Manual](https://asgard-manual.nextron-systems.com) and click the bottom left label which says ``v: latest``.
You can find older versions of the manual, but most importantly, you can download the currently selected version for offline viewing.
Just choose one of the formats you would like to use.#### Using git
You can use ``git`` to clone the repository to your local machine and build the project. This method is more geared towards developers who want to contribute towards the project.
``` bash
$ git clone https://github.com/NextronSystems/asgard-manual.git
$ python3 -m venv venv
$ source venv/bin/activate
$ cd asgard-manual
$ pip install -r requirements.txt
$ make html
```You will see a folder called ``_build`` in the current directory. In this folder you can find another folder called ``html``, which contains ``index.html``. You can open this file with a browser of your choice and
browse the manual locally.