Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 707 Bytes

README.md

File metadata and controls

27 lines (15 loc) · 707 Bytes

go-furnace

Overview

A simple boilerplate generator which generates multiple templates in a concurrent manner to save time!

Prerequisites

  • Node.js and npm installed

Configuration: Electron templates

To generate a electron template , you need to configure sudoers to allow npm to be executed without a password prompt. Follow these steps:

  1. Open the sudoers file using the visudo command:

    sudo visudo
    
  2. Add the following line to allow running npm install electron without a password prompt:

    your_username ALL=(ALL) NOPASSWD: /usr/bin/npm install electron
    

Replace your_username with your actual macOS username.

  1. Save the changes and exit the editor