Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 963 Bytes

README.md

File metadata and controls

43 lines (28 loc) · 963 Bytes

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 is installed globally:

npm run less

JS

Assuming webpack 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:

npm run dev

To serve your page at http://localhost:3456:

npm run server