tree: f018ed23d7ca25ba5b0143291314d8839393956e [path history] [tgz]
  1. src/
  2. bower.json
  3. config.rb
  4. Gruntfile.js
  5. LICENSE
  6. package.json
  7. README.md
  8. robots.txt
nifi-site/README.md

About

[Apache NiFi project] (http://nifi.incubator.apache.org).

Getting Started

The site is built using grunt task runner, bower package manager for the web, and npm package manager for node. npm is used to manage the node modules required for building this site. bower is used to manage the front end packages that the site will depend on.

Both grunt and bower can be installed via npm once it is installed.

sudo npm install -g grunt-cli
sudo npm install -g bower

To download the front end packages required for this site run the following command from the nifi-site directory.

bower install

To install the node modules required to build this site run the following command from the nifi-site directory.

npm install

The site is built using foundation a responsive front end framework. Consequently, the site is using sass and compass for CSS pre-processing. This will also require ruby to be installed along with sass and compass. Both sass and compass can be installed via ruby once it is installed.

gem install compass

Grunt Tasks

To build the site run the default grunt task. This will assemble the site and place the resulting site in the dist folder.

grunt

If developing new content/features for the site, it may be helpful to run the dev task which will build the site and continue to watch the source files for changes. Any changes will cause the site to be rebuilt.

grunt dev

Application Style Properties

Font

Colors

  • ‘ni’: #7A96A4
  • ‘fi’: #0F3541
  • Toolbox: #7299AC
  • Toolbar: #A0BAC7
  • Flow Status: #D9E4E8
  • Utilities: #81A0B4

Technologies & Resources

  • HTML5
  • CSS3
  • Foundation
  • jQuery
  • Modernizr
  • Google Fonts API
  • Web Font Loader
  • FontAwesome

License

Except as otherwise noted this software is licensed under the Apache License, Version 2.0

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.