https://github.com/freinet12/vue-images
A simple vue.js app to create an image gallery using the imgur API
https://github.com/freinet12/vue-images
front-end-development imgur imgur-api javascript vue vue-router vuejs2 vuex
Last synced: 4 months ago
JSON representation
A simple vue.js app to create an image gallery using the imgur API
- Host: GitHub
- URL: https://github.com/freinet12/vue-images
- Owner: freinet12
- Created: 2020-04-07T22:48:13.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:57:13.000Z (over 3 years ago)
- Last Synced: 2025-02-08T03:31:36.107Z (over 1 year ago)
- Topics: front-end-development, imgur, imgur-api, javascript, vue, vue-router, vuejs2, vuex
- Language: Vue
- Size: 3.42 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vue-images
## Project setup
```
npm install
```
### Imgur
```
1) create an imgur account
https://imgur.com/
```
```
2) register a new application
https://api.imgur.com/oauth2/addclient
for Authorization type, select the first option:
OAuth 2 authorization with a callback UR
for the Authorization Callback URL, use :
http://localhost:8080/oauth2/callback
```
```
3) create a .env file in the root of the project and add your imgur Client ID and Client Secret to the following variables:
VUE_APP_IMGUR_CLIENTID=your-client-id
VUE_APP_IMGUR_SECRET=your-client-secret
```
### Compiles and hot-reloads for development
```
npm run serve
```
### Compiles and minifies for production
```
npm run build
```
### Lints and fixes files
```
npm run lint
```
### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).