From 121107f3cc1b1d232a9033169f1ee0977ff42f49 Mon Sep 17 00:00:00 2001 From: Rohan Cragg Date: Wed, 22 Dec 2021 09:33:09 +0000 Subject: [PATCH] Suggested readme fixes for upstream issue: Python2 should be mentioned as pre-requisite #65 --- vue-app/README.md | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/vue-app/README.md b/vue-app/README.md index d657f2e..54697d0 100644 --- a/vue-app/README.md +++ b/vue-app/README.md @@ -1,7 +1,14 @@ -# Static Web App +git checkout -# Static Web App This project was created to help represent a fundamental app written with Vue. The shopping theme is used throughout the app. +## Pre-Reqs + +- [Python 2](https://www.python.org/downloads/) - python2 executable must be present on PATH +- [Node.js LTS and Git](https://nodejs.org/) +- [GitHub](https://github.com) account +- [Visual Studio Code](https://code.visualstudio.com) + ## Getting Started 1. Create a repository from this template repository @@ -21,15 +28,31 @@ This project was created to help represent a fundamental app written with Vue. T npm install ``` +1. Update browsers list + +```bash + npx browserslist@latest --update-db +``` + +1. Fix any lint errors + +```bash + npm run lint --fix +``` + 1. Run the app ```bash npm run serve ``` - ## Resources +### Python2 + +[Installing Python 2 on Windows](https://docs.python-guide.org/starting/install/win/) +[Use Scoop to install both Python2 and Python3 on Windows and switch between them](https://github.com/ScoopInstaller/Scoop/wiki/Switching-Ruby,-Python-and-PHP-Versions#python) + ### Azure Static Web Apps - Learn how to [Publish an Angular, React, Svelte, or Vue JavaScript app and API with Azure Static Web Apps](https://docs.microsoft.com/learn/modules/publish-app-service-static-web-app-api?wt.mc_id=mslearn_staticwebapp-github-jopapa)