mirror of
https://gitlab.com/lvra/lvra.gitlab.io.git
synced 2024-11-10 02:20:26 +01:00
chore: readme with instructions
This commit is contained in:
parent
f90a70e8c7
commit
3685f7cc97
1 changed files with 40 additions and 0 deletions
40
README.md
Normal file
40
README.md
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
# Linux VR Adventures Wiki
|
||||||
|
|
||||||
|
The Linux VR knowledge base!
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
|
||||||
|
You will need to install [Hugo extended](https://gohugo.io/installation/linux/).
|
||||||
|
|
||||||
|
### Cloning and submodules
|
||||||
|
|
||||||
|
You'll need to clone this repo with submodules or init your submodules after the fact.
|
||||||
|
|
||||||
|
#### Clone with submodules
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://gitlab.com/LVRA/wiki --recurse-submodules
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Init submodules in existing clone
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git submodule init
|
||||||
|
git submodule update
|
||||||
|
```
|
||||||
|
|
||||||
|
## Running
|
||||||
|
|
||||||
|
You can run a live server with
|
||||||
|
|
||||||
|
```bash
|
||||||
|
hugo serve
|
||||||
|
```
|
||||||
|
|
||||||
|
## Building
|
||||||
|
|
||||||
|
```bash
|
||||||
|
hugo
|
||||||
|
```
|
Loading…
Reference in a new issue