https://github.com/intermine/bluegenes-tool-test
STOP! THIS TOOL IS FOR BLUEGENES INTERNAL DEVELOPER USE.
https://github.com/intermine/bluegenes-tool-test
Last synced: 11 months ago
JSON representation
STOP! THIS TOOL IS FOR BLUEGENES INTERNAL DEVELOPER USE.
- Host: GitHub
- URL: https://github.com/intermine/bluegenes-tool-test
- Owner: intermine
- License: mit
- Created: 2019-08-02T10:53:37.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T08:21:15.000Z (over 3 years ago)
- Last Synced: 2025-03-06T01:53:19.689Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 464 KB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bluegenes Tool Test
This tool is for internal bluegenes tool API development/debug/testing use. **It doesn't do anything useful as a tool!**
Feel free to add things to this tool when you find yourself manually creating tools to test specific aspects of the tool API.
### To set up locally for development
1. Clone the repo
2. `cd bluegenes-tool-test` 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
```
##### Developing:
Run each of these commands in separate terminals:
To rebuild your js every time you save:
```bash
npm run dev
```
To serve your page at [http://localhost:3456](http://localhost:3456):
```bash
npm run server
```