https://github.com/jsmith/2019-web-engineering-challenge
Spotify Web Engineer Challenge - Summer 2019
https://github.com/jsmith/2019-web-engineering-challenge
Last synced: 5 months ago
JSON representation
Spotify Web Engineer Challenge - Summer 2019
- Host: GitHub
- URL: https://github.com/jsmith/2019-web-engineering-challenge
- Owner: jsmith
- License: mit
- Created: 2019-01-15T13:20:25.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-15T20:55:04.000Z (over 7 years ago)
- Last Synced: 2026-01-31T19:34:38.783Z (5 months ago)
- Language: Vue
- Homepage: https://jacobsmith.me/2019-web-engineering-challenge
- Size: 488 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spotify Web Engineer Challenge - Summer 2019
My repository for the Summer 2019 Web Engineer Challenge. This application makes use of Vue, TypeScript, and a few utility libraries to create the Toronto Waste Lookup application.
See the deployed application [here](https://jacobsmith.me/2019-web-engineering-challenge/).
### Environment Setup
Just install the dependencies. This step assumes you have `npm` and `Node.js` already installed.
```
npm i
```
### Development
Vue CLI 3 comes with a hot reload development server. Just use the following command and you're good to go.
```
npm run serve
```
### Storybook
Storybook is being used as a development environment. To view the stories, run the following command.
```
npm run storybook:serve
```
### Deployment
Run the following commands. This will build the application to the `docs/` folder and will use `GitHub Pages` to host the website.
```
npm run build
git add .
git commit -m "YOUR COMMIT MESSAGE"
git push
```