Skip to content
This repository has been archived by the owner on Jun 8, 2021. It is now read-only.

Latest commit

 

History

History
60 lines (33 loc) · 1.28 KB

build instructions.md

File metadata and controls

60 lines (33 loc) · 1.28 KB

Build Instructions

MacOS

Gives you just the app, not the fancy disk image.

  1. Download the repo, extract it

1. install homebrew

2. open terminal, run

brew install node

to install nodejs

sudo npm install -g nativefier

to install nativefier globally

3. in the terminal, run

cd PathToThisDirectory

to set the icon input and build output for nativefier

nativefier --name "Asana" "https://app.asana.com" --min-width 750 --min-height 300 --single-instance --title-bar-style "hidden" --icon "Icons/asana.icns"

to build the thing

Windows

Gives you just the app in a folder, no installer whatsoever.

  1. Download the repo, extract it

1. install chocolatery

2. open cmd or powershell as admin, run

set-executionpolicy remotesigned

to enable signed remote powershell scripts

choco install nodejs.install

to install nodejs

npm install -g nativefier

to install nativefier globally

3. in the terminal, run

cd "PathToThisDirectory"

to set the icon input and build output for nativefier

nativefier --name "Asana" "https://app.asana.com" --min-width 750 --min-height 300 --single-instance --icon "Icons\asana.ico"

to build the thing

Linux

#ToDo