Codesign Web Standalone for OS X

Hi,

how do I actually codesign a standalone web build in OS X?

Cheers & Thanks,
Denis

command line codesign tool maybe?

https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/codesign.1.html

Here is an example:

codesign --deep --sign "Developer ID Application" --prefix com.MyBusinessName. /Path/To/MyStandAloneWebApp

This will work only if you have Xcode or the Command Line Tools for Xcode installed and have a Developer ID Application code signing certificate installed.

Awesome! Thanks!