dev.toml 827 B

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