Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suggested readme fixes for issue #65 #66

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions vue-app/README.md
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/MicrosoftDocs/mslearn-staticwebapp/generate>
Expand All @@ -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)
Expand Down