Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Subash committed Jul 14, 2020
0 parents commit f7dca6b
Show file tree
Hide file tree
Showing 23 changed files with 1,929 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
charset = utf-8
indent_style = space
indent_size = 2
[*.js]
insert_final_newline = true
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Always use lf line endings
* text=auto eol=lf
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.DS_Store
/build
/node_modules
/codesign.p12
/build.config.js
9 changes: 9 additions & 0 deletions build.config.example.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const path = require('path');

module.exports = {
appleDeveloperId: 'abc',
appleDeveloperUsername: 'abc',
appleDeveloperPassword: 'abc',
windowsCodesignCertificate: path.resolve(__dirname, 'codesign.p12'),
windowsCodesignCertificatePassword: 'hunter2'
};
Loading

0 comments on commit f7dca6b

Please sign in to comment.