Skip to content

Commit

Permalink
chore: update .gitignore and add macOS entitlements file
Browse files Browse the repository at this point in the history
- Modified .gitignore to include build directory while excluding specific files, ensuring proper build output management.
- Added a new entitlements.mac.plist file to define security permissions for macOS builds, enhancing application security and compliance with macOS requirements.
  • Loading branch information
0xIbra committed Dec 17, 2024
1 parent 3bf5fef commit b0ea5c9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ dist-ssr
# Build output
release/
dist/
build/
out/
build/*
!build/
!build/entitlements.mac.plist

# Environment files
.env
Expand Down
14 changes: 14 additions & 0 deletions build/entitlements.mac.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.cs.debugger</key>
<true/>
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
</dict>
</plist>

0 comments on commit b0ea5c9

Please sign in to comment.