formBuilder is open source to the core and contributions are always welcome. In this document we'll cover some dependencies and installation process to get your local development environment up and running.
To develop for formBuilder you'll need:
- NodeJS
- GulpJS
- Git
- and a GitHub account
While not required, the following tools are recommended to maintain code quality and consistency in style.
Navigate to the directory you'll be working from and run:
git clone https://github.com/kevinchappell/formBuilder.git form-builder
cd form-builder
npm install
gulp
The above code will clone the repo, install the required node_modules
and run the default gulp
task. You should now have a locally running version of the demo page.
For more information on build processes, editing fonts or adding custom fields please see the documentation here.
Windows users, remember to configure your line endings with core.autocrlf
. More info here
$ git config --global core.autocrlf true
# Configure Git on Windows to properly handle line endings