https://github.com/kriptograf/demo-app-vue
Demo application from vue js
https://github.com/kriptograf/demo-app-vue
Last synced: 4 months ago
JSON representation
Demo application from vue js
- Host: GitHub
- URL: https://github.com/kriptograf/demo-app-vue
- Owner: kriptograf
- Created: 2019-04-26T23:00:07.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-10T22:10:58.000Z (about 7 years ago)
- Last Synced: 2025-03-03T02:41:24.747Z (over 1 year ago)
- Language: Vue
- Size: 451 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ads
## Project setup
```
npm install
```
### Compiles and hot-reloads for development
```
npm run serve
```
### Compiles and minifies for production
```
npm run build
```
### Run your tests
```
npm run test
```
### Lints and fixes files
```
npm run lint
```
### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
### Install Vuetify
``
vue add vuetify
``
### Install VueRouter
```
npm install vue-router --save
```
### DB config firebase
В директории src создать поддиректорию config.
В этой директории создать файл db.js с содержимым конфигурации приложения firebase
```
export default {
apiKey: "your-api-key",
authDomain: "your-auth-domain",
databaseURL: "https://your-app.firebaseio.com",
projectId: "your-vue-project-id",
storageBucket: "your-vue-storage.appspot.com",
messagingSenderId: "your-sender-id",
appId: "your:app-id"
}
```
next lesson 24