Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sakshisrivastava413/bluegenes-travis-demo
https://github.com/sakshisrivastava413/bluegenes-travis-demo
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sakshisrivastava413/bluegenes-travis-demo
- Owner: Sakshisrivastava413
- License: mit
- Created: 2020-04-02T05:40:34.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-02T12:53:19.000Z (almost 5 years ago)
- Last Synced: 2024-11-18T22:06:31.330Z (3 months ago)
- Language: HTML
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# travis demo
[![Coverage Status](https://coveralls.io/repos/github/Sakshisrivastava413/bluegenes-travis-demo/badge.svg?branch=ci)](https://coveralls.io/github/Sakshisrivastava413/bluegenes-travis-demo?branch=ci)
[![Build Status](https://travis-ci.com/Sakshisrivastava413/bluegenes-travis-demo.svg?branch=master)](https://travis-ci.com/Sakshisrivastava413/bluegenes-travis-demo)travis demo is a tool made for [BlueGenes](http://bluegenes.apps.intermine.org) following BlueGenes Tool API.
Add more description of your tool here! :)## Licence
### To set up locally for development
1. Clone the repo
2. `cd bluegenes-travis-demo` and then `npm install` to install dependencies.All of the editable source files for css and js are in `src`. To bundle for prod, run the following commands:
#### CSS
Assuming [less](http://lesscss.org/) is installed globally:
```
npm run less
```#### JS
Assuming [webpack](https://webpack.js.org/) is installed globally:
##### Single build:
```
npm run build
```##### Applied Coding practices / ESLint Rules:
- _indent_: use __tab (2 space tab)__ instead of spaces to not get an error.
- _linebreak-style_: use __\n__ for a newline, if you're on windows, configure it in your editor settings.
- _quotes_: use __single quote__ instead of double quote.
- _semi_: use _semi colon_ at end of each statement / expression / function definition.
- _comma-dangle_: do not use dangling commas i.e. extra comma at the end of object values, function args, etc.). More about this [here](https://eslint.org/docs/rules/comma-dangle).
- More pre-configured rules from __eslint:recommended__ you must follow to not get errors [here](https://eslint.org/docs/rules/).##### Developing:
To serve your code at [localhost:3456](http://localhost:3456) and rebuild it every time it changes, run:```bash
npm run dev
```