Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 951 Bytes

README.md

File metadata and controls

52 lines (37 loc) · 951 Bytes

#Hybrid Mac

This is an example of running Meteor wrapped in a Mac OS X app (using gulp for build tools)

demo

Development

To add Mac OS X native specific code

if (Meteor.isMac) {
	return "WOOT";
}

Usage

Run all the following commands from the build directory

cd build

To start the Meteor server

npm start

To build the Meteor app into the Mac OS X app

npm install
gulp

After Xcode opens, run the application

============

TODO

  • Replace Xcode app name
  • Let the user specify icons in mac-config.json
  • Clean up build gulpfile
  • Fix DDP_DEFAULT_CONNECTION_URL replacement and add autoupdate back in
  • Add Meteor.isMac flag
  • Build into a Meteor package

============

Details