Update SVR.JS installer and add SVR.JS installer command into SVR.JS documentation.
This commit is contained in:
parent
a5c41f5c47
commit
32ec29fc02
2 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ _This documentation is in the public domain._
|
|||
|
||||
#### Using SVR.JS installer (installer packages made in April 5, 2024 and later; GNU/Linux only)
|
||||
|
||||
The command for SVR.JS installation is available in [the SVR.JS home page](https://svrjs.org). First off, switch to _GNU/Linux_ tab, then copy the command below the tab. After starting the installer, you will be prompted to select the type of SVR.JS installation. After selecting the type, SVR.JS installer will install Node.JS, SVR.JS and create SVR.JS service. During installation, you may be prompted for the installation of dependencies. Once the installation is done, the server is started at _http://localhost_.
|
||||
The command for SVR.JS installation is available in [the SVR.JS home page](https://svrjs.org). First off, switch to _GNU/Linux_ tab, then copy the command below the tab into the terminal. The command looks something like this: `curl -fsSL https://downloads.svrjs.org/installer/svr.js.installer.linux.20240509.sh > /tmp/installer.sh && sudo bash /tmp/installer.sh`. After starting the installer, you will be prompted to select the type of SVR.JS installation. After selecting the type, SVR.JS installer will install Node.JS, SVR.JS and create SVR.JS service. During installation, you may be prompted for the installation of dependencies. Once the installation is done, the server is started at _http://localhost_.
|
||||
|
||||
File structure will look like this:
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ function decodeHTML(html) {
|
|||
var tabs = [
|
||||
{
|
||||
name: "GNU/Linux",
|
||||
command: "curl -fsSL https://downloads.svrjs.org/installer/svr.js.installer.linux.20240506.sh > /tmp/installer.sh && sudo bash /tmp/installer.sh",
|
||||
command: "curl -fsSL https://downloads.svrjs.org/installer/svr.js.installer.linux.20240509.sh > /tmp/installer.sh && sudo bash /tmp/installer.sh",
|
||||
uaRegex: /\b(?:GNU\/)?Linux\b/gi
|
||||
},
|
||||
{
|
||||
|
|
Reference in a new issue