-
Notifications
You must be signed in to change notification settings - Fork 156
Dev Notes
James Habben edited this page Sep 26, 2024
·
1 revision
Notes for Contributors
Consistency in Artifact Modules
- Name module files with Camel Case (ex:
myModuleCode.py
) - Put the
__artifacts__
block at the top of the module code before anything else
Performance in Artifact Modules
- Make the file search pattern as specific as possible to limit the number of files returned
- Bad:
*.plist
or*.sqlite
- Still bad:
*/info.plist
or*/db.sqlite
- Good:
*/Application/*/Library/Application Support/ChatFiles/*/db.sqlite*
- Bad: