Readme updates #9

Merged
littlemisssynth merged 15 commits from readme-update into master 2020-01-03 04:59:07 +00:00
1 changed files with 7 additions and 12 deletions
Showing only changes of commit e660904aff - Show all commits

View File

@ -14,19 +14,14 @@
<p align="left">Modules are loaded in at runtime and are completely separate from each other. Each module has a prefix, for example the request handlers have the prefix “handle_console”. These prefixes determine the function of the modules and help the server to function.</p> <p align="left">Modules are loaded in at runtime and are completely separate from each other. Each module has a prefix, for example the request handlers have the prefix “handle_console”. These prefixes determine the function of the modules and help the server to function.</p>
<h2 align="left">How to use Revolution.</h2> <h2 align="left">How to use Revolution.</h2>
<h3 align="left">From source</h3> <h3 align="left">From source</h3>
<p align="left"> <p align="left">git clone https://github.com/tgpethan/Revolution.git</p>
```git clone https://github.com/tgpethan/Revolution.git <p align="left">cd Revolution</p>
cd Revolution <p align="left">npm i</p>
npm i <p align="left">node . </p>
node .
```
</p>
<h3 align="left">From build</h3> <h3 align="left">From build</h3>
<p align="left"> <p align="left">Download latest build (https://github.com/tgpethan/Revolution/releases/latest)</p>
`Download latest build (https://github.com/tgpethan/Revolution/releases/latest)` <p align="left">Unzip the zip</p>
`Unzip the zip` <p align="left">Run revolution executable</p>
`Run revolution executable `
</p>
<h2 align="left">How to install modules.</h2> <h2 align="left">How to install modules.</h2>
<p align="left">With modules you simply have to place the module inside the modules folder and start the server. <p align="left">With modules you simply have to place the module inside the modules folder and start the server.
The modules will automatically set themselves up and the server will start as normal. The modules will automatically set themselves up and the server will start as normal.