dev_config.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. [Unclassified]
  29. c1_pk = "id INTEGER PRIMARY KEY ASC"
  30. c2 = "boardId"
  31. c3 = "eventId"
  32. c4 = "status"
  33. # ----- App Configuration -----
  34. StrictMode = false
  35. LLM_callable = false
  36. DBType = "sqlite3"
  37. DBPath = "dev.db"
  38. Lang = "en"
  39. ListStyle = "tree"
  40. DisplayTimeZone = "utc+8"
  41. # ----- Some Notes -----
  42. # Set integer prime key: <columnName> INTEGER PRIMARY KEY ASC
  43. # status: alive/deleted
  44. # ↓ Don't foget to write the method(s) for it
  45. # ListStyle: tree/md_table/LLM_md_table/<customName>
  46. # [todo 4] StrickMode: 1. Have to be full length commands; 2. err when not exist