Update README to explain project

This commit is contained in:
Shaun Reed 2021-12-18 12:45:38 -05:00
parent 4beb29331f
commit 2cfe6094c8
3 changed files with 15389 additions and 22 deletions

View File

@ -1,18 +1,37 @@
# sreed-web-programming # sreed-web-programming
Stuff for Web Programming
Web programming project using Vue JS to create a simple store web application.
[Tutorial series followed](https://www.vuemastery.com/courses/intro-to-vue-3/forms-and-v-model-vue3)
This project uses [Vue Single File Components](https://v3.vuejs.org/api/sfc-spec.html), which in general must be built into the project using `vue-cli`.
[Axios](https://github.com/axios/axios) is also used to read a static JSON file to populate reviews on the product.
![](./screenshot.png)
## Project setup ## Project setup
```
sudo apt install npm Using [NodeSource PPA on Ubuntu](https://nodesource.com/) to install latest version of `nodejs` and `npm`
```bash
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt install nodejs
sudo npm install -g npm
git clone git@gitlab.com:shaunrd0/sreed-web-programming.git
cd sreed-web-programming
npm install npm install
``` ```
### Compiles and hot-reloads for development The following instructions were (mostly) automatically generated by running `vue-cli create sreed-web-programming`.
### Serve Application for Development
``` ```
npm run serve npm run serve
``` ```
### Compiles and minifies for production ### Compiles Application for Production
``` ```
npm run build npm run build
``` ```
@ -24,3 +43,4 @@ npm run lint
### Customize configuration ### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/). See [Configuration Reference](https://cli.vuejs.org/config/).

15381
package-lock.json generated

File diff suppressed because it is too large Load Diff

BIN
screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB