Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://codingstones.github.io/tmdb-quasar/
Quasar app with The Movie DB catalog
https://codingstones.github.io/tmdb-quasar/
Last synced: 8 days ago
JSON representation
Quasar app with The Movie DB catalog
- Host: GitHub
- URL: https://codingstones.github.io/tmdb-quasar/
- Owner: codingstones
- Created: 2017-11-30T23:00:30.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-22T22:15:58.000Z (almost 7 years ago)
- Last Synced: 2024-08-02T00:25:41.111Z (3 months ago)
- Language: JavaScript
- Homepage: https://codingstones.github.io/tmdb-quasar
- Size: 17.5 MB
- Stars: 27
- Watchers: 4
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- quasar-awesome - website - quasar) | Quasar app with The Movie DB catalog | v0.14.7 | (Awesome Quasar [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) / Tutorials)
README
# TMdb Catalog
You can check the app running [HERE!](https://codingstones.github.io/tmdb-quasar)
## Getting Started!
You will need to register in [themoviedb](https://developers.themoviedb.org/3/getting-started/authentication) to create your API_KEY (for version v3).
Once you have an API_KEY you need to rename /config/secrets2.js to /config/secret.js and paste your API_KEY.### install dependencies
``` bash
$ yarn install
```
or
``` bash
$ npm install
```### run tests
``` bash
$ jest --watch
```### serve with hot reload at localhost:8080
``` bash
$ yarn dev mat
```
or
``` bash
$ npm run dev mat
```### 'mat' was the material theme, try iOS with
``` bash
$ yarn dev ios
```
or
``` bash
$ npm run dev ios
```### build for production with minification
``` bash
$ quasar build
```## Going Mobile!
You may want to wrap the App into a native mobile App. Given you already have Cordova and an Android or iOS SDK installed in your system, run:
```
quasar wrap cordova
cordova platform add android
cordova run android
```For full details, take a look to the Quasar [guide](http://quasar-framework.org/guide/cordova-wrapper.html).