Question
Is it possible to configure the underlying SQLite when the OpenCode server starts?
Specifically, I need to set the following option:
SQLITE_DEFAULT_FILE_PERMISSIONS
This controls the default numeric file permissions for newly created database files on Unix systems. If not specified, the default is 0644, which means the file is globally readable but writable only by the creator.
In our case, we need the SQLite database files to also be group-writable (e.g., 0664). Is there a way to configure this when starting the OpenCode server?
Question
Is it possible to configure the underlying SQLite when the OpenCode server starts?
Specifically, I need to set the following option:
SQLITE_DEFAULT_FILE_PERMISSIONSThis controls the default numeric file permissions for newly created database files on Unix systems. If not specified, the default is 0644, which means the file is globally readable but writable only by the creator.
In our case, we need the SQLite database files to also be group-writable (e.g., 0664). Is there a way to configure this when starting the OpenCode server?