-
Notifications
You must be signed in to change notification settings - Fork 227
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:
*.plistor*.sqlite - Still bad:
*/info.plistor*/db.sqlite - Good:
*/Application/*/Library/Application Support/ChatFiles/*/db.sqlite*
- Bad: