Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 1.46 KB

CONTRIBUTING.md

File metadata and controls

40 lines (30 loc) · 1.46 KB

Contributing

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.

Dependencies

To develop for formBuilder you'll need:

Recommended Tooling

While not required, the following tools are recommended to maintain code quality and consistency in style.

Installation

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.

Documentation

For more information on build processes, editing fonts or adding custom fields please see the documentation here.

Notes

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