dev_config.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # ----- DB Configuration -----
  2. # Just a better reference for dev.db, no functional use(yet)
  3. [Board]
  4. c1_p-k = "id INTEGER PRIMARY KEY ASC"
  5. c2 = "name"
  6. c1 = "status"
  7. [Class]
  8. c1_p-k = "id INTEGER PRIMARY KEY ASC"
  9. c2 = "name"
  10. c3 = "usingBoard"
  11. c4 = "status"
  12. [Event]
  13. c1_p-k = "id INTEGER PRIMARY KEY ASC"
  14. c2 = "name"
  15. c3 = "dscrp"
  16. c4 = "creator"
  17. c5 = "createdTime"
  18. c6 = "classCreated"
  19. c7 = "classCurrent"
  20. c8 = "status"
  21. [Stucked]
  22. c1_pk = "id INTEGER PRIMARY KEY ASC"
  23. c2 = "boardId"
  24. c3 = "eventId"
  25. c4 = "stuckedTime"
  26. c5 = "solvedTime"
  27. c6 = "status"
  28. # ----- App Configuration -----
  29. StrictMode = false
  30. LLM_callable = false
  31. DBType = "sqlite3"
  32. DBPath = "dev.db"
  33. Lang = "en"
  34. ListStyle = "tree"
  35. DisplayTimeZone = "utc+8"
  36. # ----- Some Notes -----
  37. # Set integer prime key: <columnName> INTEGER PRIMARY KEY ASC
  38. # status: alive/deleted/unclassified(event only)
  39. # ↓ Don't foget to write the method(s) for it
  40. # ListStyle: tree/md_table/LLM_md_table/<customName>
  41. # [todo 4] StrickMode: 1. Have to be full length commands; 2. err when not exist
  42. # Explanation of abbreviations
  43. #