Install WSL using on Windows. You will likely need to reboot.
wsl.exe --installOnce WSL is installed install NodeJS v16. I recommend installing NVM: https://tecadmin.net/how-to-install-nvm-on-ubuntu-20-04/
Then cd to this folder and install the node packages here:
npm installLastly install an editor to edit these files like gVim:
sudo apt install vim-gtk3 -yThen run gvim to edit things:
gvim ./src/App.vueThen you can start your dev server and access the website!
npm run serve
Install playwright from here:
https://playwright.dev/docs/intro
Make sure to install MSEdge
npx playwright install msedgeThen run the tests by running:
npx playwright testOr to see what it's doing:
npx playwright test --headed