Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...


Setting up your Project Folder:

A few steps should be taken by the developer before running the initial bm forms init command:

  1. Inside your project folder, create a sub folder that will contain your forms components.
  2. Using the command line, cd into your project folder (not your new forms folder, but the parent project folder) and run npm init. This will setup your package.json file, which is needed to handle the forms plugins.

...

If the defaults are used, you should end up with a folder structure that matches the following:


Code Block
|--my-project/
|  |--.git/
|  |--node_modules/
|  |--my-forms/
|  |  |--templates/
|  |--.blinkmrc.json
|  |--package.json

...