mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-25 15:24:58 +00:00
This replaces the previous manual JSON file system with standard Drizzle migrations, enabling: - Proper database schema migrations with timestamp-based versioning - Batched migration for faster migration of large datasets - Better data integrity with proper table schemas instead of JSON blobs - Easier database upgrades and rollback capabilities Migration changes: - Todo table now uses individual columns with composite PK instead of JSON blob - Share table removes unused download share data - Session diff table moved from database table to file storage - All migrations now use proper Drizzle format with per-folder layout Users will see a one-time migration on next run that migrates existing JSON data to the new SQLite database.
17 lines
324 B
JSON
17 lines
324 B
JSON
{
|
|
"$schema": "https://opencode.ai/config.json",
|
|
// "plugin": ["opencode-openai-codex-auth"],
|
|
// "enterprise": {
|
|
// "url": "https://enterprise.dev.opencode.ai",
|
|
// },
|
|
"provider": {
|
|
"opencode": {
|
|
"options": {},
|
|
},
|
|
},
|
|
"tools": {
|
|
"github-triage": false,
|
|
"github-pr-search": false,
|
|
},
|
|
}
|