Installation from Fork
Last updated
Generally, the installation follows the same flow as the ScandiPWA projects, but instead of installing from template using create-scandipwa-app you will need to clone the project from the source.
You need to have Git, Node (version >= 12), and Yarn installed
git --version
node -v # expected: v12.x or v14.x
yarn -vYou also need to fork the ScandiPWA repository to be able to create pull requests.
This project is forcing you to use Yarn because it relies on the underlying "workspaces" feature. The NPM will not work properly.
Clone the ScandiPWA repository:
# clone your fork - replace <your-username> with your github username
git clone https://github.com/<your-username>/scandipwa
cd scandipwa # move into the directory you clonedInstall dependencies with yarn:
yarnNow, you can go ahead use ScandiPWA in the following modes:
Just enter the ScandiPWA package directory and run the start command. Alternatively, use any other available command from this list.
You can follow the original instructions (starting from step 3), but make sure to use the package path, not the cloned repository path packages/scandipwa.
Last updated
cd packages/scandipwa # move into the scandipwa package directory
yarn start