mirror of
https://github.com/stashapp/stash.git
synced 2025-12-08 01:13:09 +01:00
Use --frozen-lockfile in travis calls to yarn install (#329)
* Add --freeze-lock to travis * Update README
This commit is contained in:
parent
3d3f8877de
commit
2dc1b42a0a
2 changed files with 3 additions and 3 deletions
|
|
@ -9,7 +9,7 @@ env:
|
|||
- GO111MODULE=on
|
||||
before_install:
|
||||
- echo -e "machine github.com\n login $CI_USER_TOKEN" > ~/.netrc
|
||||
- travis_retry yarn --cwd ui/v2 install
|
||||
- travis_retry yarn --cwd ui/v2 install --frozen-lockfile
|
||||
- make generate
|
||||
- CI=false yarn --cwd ui/v2 build # TODO: Fix warnings
|
||||
#- go get -v github.com/mgechev/revive
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ Follow [this README.md in the docker directory.](docker/production/README.md)
|
|||
|
||||
Stash supports macOS, Windows, and Linux. Download the [latest release here](https://github.com/stashapp/stash/releases).
|
||||
|
||||
Run the executable (double click the exe on windows or run `./stash-osx` / `./stash-linux` from the terminal on macOS / Linux) and navigate to either https://localhost:9999 or http://localhost:9998 to get started.
|
||||
Run the executable (double click the exe on windows or run `./stash-osx` / `./stash-linux` from the terminal on macOS / Linux) and navigate to either https://localhost:9999 or http://localhost:9999 to get started.
|
||||
|
||||
*Note for Windows users:* Running the app might present a security prompt since the binary isn't signed yet. Just click more info and then the "run anyway" button.
|
||||
|
||||
|
|
@ -69,7 +69,7 @@ Join the [Discord server](https://discord.gg/2TsNFKt).
|
|||
* Go Install: `go get github.com/gobuffalo/packr/v2/packr2@v2.0.2`
|
||||
* [Binary Download](https://github.com/gobuffalo/packr/releases)
|
||||
* [Yarn](https://yarnpkg.com/en/docs/install) - Yarn package manager
|
||||
* Run `yarn install` in the `stash/ui/v2` folder (before running make generate for first time).
|
||||
* Run `yarn install --frozen-lockfile` in the `stash/ui/v2` folder (before running make generate for first time).
|
||||
|
||||
NOTE: You may need to run the `go get` commands outside the project directory to avoid modifying the projects module file.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue