- Enable WSL by following these steps:
- Open "Control Panel".
- Open "Programs and Features".
- Click on "Turn Windows features on or off".
- Find and check "Windows Subsystem for Linux".
- Install "Ubuntu" from Microsoft Store.
- After successfull install, open Ubuntu.
- Follow post-install instructions on screen.
- Paste this command to terminal
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash
to install node version manager (nvm
for short). - Close terminal or enter
source ~/.bashrc
to refresh executables path. - Install node by using
nvm install node
. - Clone repository if you didn't already by using command
git clone <SSH || HTTPS repository address>
. - Move to 'frontend' directory from project root with
cd frontend
. - Run
npm install
. - Run
npm run build
for production ready version of frontend files. - Run
npm run build:dev
for development mode. - You can also run
npm run serve
if you want to start local web server to view files. Web server is implicitly started withnpm run build:dev
so no need to run these two together.
Skip first 5 steps described above. Continue from 5. until the last.