Update README.md

This commit is contained in:
Seth Burkart
2023-12-03 14:00:27 +11:00
committed by GitHub
parent e0a7e99360
commit c2fdfa17db
+30 -2
View File
@@ -14,7 +14,6 @@
- [Features](#features) - [Features](#features)
- [Getting Started](#getting-started) - [Getting Started](#getting-started)
- [Contributing](#contributing)
## Release Videos ## Release Videos
<video autoplay loop muted controls="false" width="33%" src="https://github.com/SethBurkart123/EvenBetterSEQTA/assets/108050083/3084644a-edbc-40e5-b1ad-1fdea4f0ca18"></video> <video autoplay loop muted controls="false" width="33%" src="https://github.com/SethBurkart123/EvenBetterSEQTA/assets/108050083/3084644a-edbc-40e5-b1ad-1fdea4f0ca18"></video>
@@ -48,7 +47,7 @@
git clone https://github.com/SethBurkart123/EvenBetterSEQTA git clone https://github.com/SethBurkart123/EvenBetterSEQTA
``` ```
### Windows ### Windows (currently not working - use manual install)
Open the `install.bat` file located inside the `scripts` folder. Then after that is finished, open the `dev.bat` file. Open the `install.bat` file located inside the `scripts` folder. Then after that is finished, open the `dev.bat` file.
@@ -68,6 +67,35 @@ sh install.sh
sh dev.sh sh dev.sh
``` ```
### Manual
1. Install dependencies
```
npm install
```
2. Install webpack
```
npm install -g webpack
```
3. Run the dev script (it updates as you save files)
```
npm run dev
```
4. Install and run the dev script for the interface **at the same time** (all custom react components are a separate sub-repository)
```
cd interface
npm install
npm run dev
```
## Folder Structure ## Folder Structure