remove old instructions for runing main.sh

This commit is contained in:
David Reed 2022-09-12 20:39:13 -04:00
parent e35a3b3f75
commit d715651521

View file

@ -66,14 +66,9 @@ To setup on Replit, first click on the "Run on Replit" button. After loading int
```sh
$ npm install
$ chmod +x main.sh
$ ./main.sh
$ npm start
```
You will only have to run the second command once. It just allows `main.sh` to be executed. By running `main.sh`, you will update any submodules and will start the app.
**Note**: If you choose not to use `main.sh`, but would rather just run all commands manually, please note that you will have to manually install submodules by running `git update submodules --init`. Without it, `static` will not be installed, and that is a required directory.
## Comprehensive Guide
Below will describe a comprehensive guide to install Ultraviolet on Linux machines.
@ -81,18 +76,16 @@ Below will describe a comprehensive guide to install Ultraviolet on Linux machin
To clone the repository, simply run the following command:
```sh
$ git clone https://github.com/titaniumnetwork-development/Ultraviolet-Node --recursive
$ git clone https://github.com/titaniumnetwork-development/Ultraviolet-Node
```
The `--recursive` flag will clone the repository and all submodules.
To begin work on the actual setup, cd into the repository. You can do so by running the following command:
```sh
$ cd Ultraviolet-Node
```
From here, you can update your submodules and install your dependencies. To do so, run the following command:
From here, you can install your dependencies. To do so, run the following command:
```sh
$ npm install