updates to readme to leverage code blocks markdown

This commit is contained in:
Blake J. Harnden 2018-01-11 11:29:06 -08:00
parent 26b1b01505
commit 5a246159f8

View file

@ -33,10 +33,12 @@ Building CORE
To build this software you should use: To build this software you should use:
./bootstrap.sh ```bash
./configure ./bootstrap.sh
make ./configure
sudo make install make
sudo make install
```
Note: You may need to pass the proxy settings to sudo make install: Note: You may need to pass the proxy settings to sudo make install:
sudo make install HTTP_PROXY=<proxy> sudo make install HTTP_PROXY=<proxy>
@ -62,9 +64,11 @@ Being able to build documentation depends on help2man being installed.
Once that has been done you can run the following commands: Once that has been done you can run the following commands:
./bootstrap.sh ```bash
./configure ./bootstrap.sh
make html ./configure
make html
```
Building Packages Building Packages
================= =================
@ -75,11 +79,13 @@ Install fpm
Build package commands, DESTDIR is used for gui packaging only Build package commands, DESTDIR is used for gui packaging only
* ./bootstrap.sh ```bash
* ./configure ./bootstrap.sh
* make ./configure
* mkdir /tmp/core-gui make
* make fpm DESTDIR=/tmp/core-gui mkdir /tmp/core-gui
make fpm DESTDIR=/tmp/core-gui
```
This will produce: This will produce:
@ -92,12 +98,16 @@ Running CORE
First start the CORE services: First start the CORE services:
sudo /etc/init.d/core-daemon start ```bash
sudo /etc/init.d/core-daemon start
```
This automatically runs the core-daemon program. This automatically runs the core-daemon program.
Assuming the GUI is in your PATH, run the CORE GUI by typing the following: Assuming the GUI is in your PATH, run the CORE GUI by typing the following:
core-gui ```bash
core-gui
```
This launches the CORE GUI. You do not need to run the GUI as root. This launches the CORE GUI. You do not need to run the GUI as root.