https://github.com/pebble-dev/rebble-store
Pebble app store replacement.
https://github.com/pebble-dev/rebble-store
front-end pebble
Last synced: 4 months ago
JSON representation
Pebble app store replacement.
- Host: GitHub
- URL: https://github.com/pebble-dev/rebble-store
- Owner: pebble-dev
- License: mit
- Created: 2016-12-07T14:03:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T12:34:39.000Z (over 3 years ago)
- Last Synced: 2024-04-14T12:31:07.145Z (about 2 years ago)
- Topics: front-end, pebble
- Language: Vue
- Size: 6.82 MB
- Stars: 260
- Watchers: 42
- Forks: 22
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rebble Store for pebble
The Rebble Store is a Pebble Appstore replacement.
If you want to contribute join us on the [Pebble Dev Discord server](http://discord.gg/aRUAYFN), then head to `#appstore`.
This is the Rebble replacement for the Pebble app store. This project is under active development, though the eventual goal is to reach feature parity with the current Pebble smartwatch app store.
This project is built with [VueJS 2](https://vuejs.org/), with webpack scripts included for debugging, hot-reload, and production builds. More information on the Vue webpack build scripts can be found [here](https://github.com/vuejs-templates/webpack).
## Backend/API
This project has a separate backend/api that's currently written in Python. It can be found [here](https://github.com/pebble-dev/rebble-appstore-api).
It's not necessary to run the API locally unless also developing for the API. The frontend points to the production API by default.
## Installing
If you want to run a local version you will also need to run the backend.
``` bash
# install dependencies
npm install
# serve with hot reload at localhost:8081
npm run dev
# build for production with minification
npm run build
# run unit tests
npm run unit
# run e2e tests
npm run e2e
# run all tests
npm test
```