Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yyyasin19/vue-weathery

Simple weather app created with Vue for learning to use the framework and its core principles.
https://github.com/yyyasin19/vue-weathery

vue weather-app webapp

Last synced: 23 days ago
JSON representation

Simple weather app created with Vue for learning to use the framework and its core principles.

Awesome Lists containing this project

README

        

# Vue Weathery
This sample app was created to get a first introduction to VueJs and it's core capabilities (components, templates, styling) as well as the deployment cycle (used netlify here) and its access to other 3rd-party APIs ([Open Weather Map](https://openweathermap.org/api)).

The following GIF showcases the look and feel of the (small) application.
![Vue Weathery Preview](src/assets/vue-weathery-preview.gif)

## Setup instructions
The following instructions help you to run this project yourself.

### Environment Variables
create a `.env`-File or set your environment variables within your hosting service accordingly:
```
VUE_APP_OPENWEATHER_API_KEY=
```

```
yarn install
```

### Compiles and hot-reloads for development
```
yarn serve
```

### Compiles and minifies for production
```
yarn build
```

### Lints and fixes files
```
yarn lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).