-
Notifications
You must be signed in to change notification settings - Fork 62
Extending the Framework
Gordon Smith edited this page May 19, 2016
·
11 revisions
- git (windows: https://git-for-windows.github.io/)
- node: https://nodejs.org/en/download/
mkdir ./someDir
cd ./someDir
git clone https://github.com/hpcc-systems/Visualization.git
cd Visualization
git checkout candidate-1.14.x
npm install -g gulp
npm install -g bower
npm install
bower install
A quick way to test your environment is to launch the unit tests:
npm test
- Add to bower.json:
...
"javascript-auto-complete": "*"
...
- Add to src/config.js: You will need to add the reference twice. Once for local usage and the other for "previewing" directly on GitHub.
...
// For local hosting
"auto-complete": "../bower_components/javascript-auto-complete/auto-complete",
...
// For GitHub hosting
"auto-complete": "//" + window.location.hostname + "/Pixabay/JavaScript-autoComplete/master/auto-complete",