Merge branch 'KIN-129-debugger'
This commit is contained in:
commit
8fc683d185
2 changed files with 8 additions and 1 deletions
|
|
@ -3,10 +3,11 @@ Kin — SQLite database schema and connection management.
|
|||
All tables from DESIGN.md section 3.5 State Management.
|
||||
"""
|
||||
|
||||
import os
|
||||
import sqlite3
|
||||
from pathlib import Path
|
||||
|
||||
DB_PATH = Path(__file__).parent.parent / "kin.db"
|
||||
DB_PATH = Path(os.environ.get("KIN_DB_PATH") or (Path.home() / ".kin" / "kin.db"))
|
||||
|
||||
SCHEMA = """
|
||||
-- Проекты (центральный реестр)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue