mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
Add linux package lists (#3571)
Added dependency installs for Arch & Ubuntu. There may be a more straightforward way to install yarn on Ubuntu, but I'm not certain.
This commit is contained in:
parent
b6b275edc8
commit
b967b63288
1 changed files with 10 additions and 0 deletions
|
|
@ -27,6 +27,16 @@ NOTE: The `make` command in Windows will be `mingw32-make` with MingW. For examp
|
||||||
1. If you don't have it already, install the [Homebrew package manager](https://brew.sh).
|
1. If you don't have it already, install the [Homebrew package manager](https://brew.sh).
|
||||||
2. Install dependencies: `brew install go git yarn gcc make node ffmpeg`
|
2. Install dependencies: `brew install go git yarn gcc make node ffmpeg`
|
||||||
|
|
||||||
|
### Linux
|
||||||
|
|
||||||
|
#### Arch Linux
|
||||||
|
1. Install dependencies: `sudo pacman -Sy go git yarn gcc make nodejs ffmpeg --needed`
|
||||||
|
|
||||||
|
#### Ubuntu
|
||||||
|
1. Install dependencies: `sudo apt-get install golang git gcc nodejs ffmpeg -y`
|
||||||
|
2. Enable corepack in Node.js: `corepack enable`
|
||||||
|
3. Install yarn: `corepack prepare yarn@stable --activate`
|
||||||
|
|
||||||
## Commands
|
## Commands
|
||||||
|
|
||||||
* `make pre-ui` - Installs the UI dependencies. Only needs to be run once before building the UI for the first time, or if the dependencies are updated
|
* `make pre-ui` - Installs the UI dependencies. Only needs to be run once before building the UI for the first time, or if the dependencies are updated
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue