Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 941 Bytes

LocalDevEnvironment.md

File metadata and controls

23 lines (18 loc) · 941 Bytes

Local Development Environment

  1. Install an editor of your choice, for example:

  2. Install the EditorConfig plugin for your chosen IDE:

  3. Git configuration

    • Windows: set git core.autocrlf to false to avoid issues with EditorConfig (needed only once):

      • git config --global core.autocrlf false
    • Git user information (if not done already)

      • git config --global user.name "John Doe"
      • git config --global user.email "[email protected]"