https://github.com/inventistudio/cryptomonitor-frontend
https://github.com/inventistudio/cryptomonitor-frontend
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/inventistudio/cryptomonitor-frontend
- Owner: InventiStudio
- Created: 2018-01-07T15:57:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-21T14:01:06.000Z (almost 8 years ago)
- Last Synced: 2025-10-23T23:55:53.216Z (8 months ago)
- Language: HTML
- Size: 15 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CryptoMonitor Front-end
**by [InventiStudio](https://inventi.studio)**
#### Table of Contents
- [Setup](#setup)
- [Development](#development)
- [Production](#production)
## Setup
#### Requirements
- [NodeJS](https://nodejs.org), *>= 8.0.0*
- [Yarn](https://yarnpkg.com/lang/en/), *>= 0.21.3*
## Development
```bash
# Clone repo and install deps
yarn
```
```bash
# Run dev server with hot reload at localhost:8080
yarn dev
```
#### Linters
```bash
# Run sass-lint
yarn lint:sass
# Run ESlint
yarn lint:es
# Run all linters
yarn lint
```
#### Tests
```bash
# Run Unit tests
yarn test:unit
```
```bash
# Run e2e tests
yarn test:e2e
```
## Production
```bash
# Build for production with minification
yarn build
# Build for production and view the bundle analyzer report
yarn build --report
# Run production server
yarn start
```
For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).