dev_config.toml 833 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # ----- init Configuration -----
  2. # Just a better reference for dev.db, no functional use(yet)
  3. [Board]
  4. # VALUES(?, ?, ?, ...)
  5. c1_p-k = "id INTEGER PRIMARY KEY ASC"
  6. c2 = "name"
  7. c1 = "status" # alive/deleted
  8. [Class]
  9. # VALUES(?, ?, ?, ...)
  10. c1_p-k = "id INTEGER PRIMARY KEY ASC"
  11. c2 = "name"
  12. c3 = "usingBoard"
  13. c4 = "status" # alive/deleted
  14. [Event]
  15. # VALUES(?, ?, ?, ...)
  16. c1_p-k = "id INTEGER PRIMARY KEY ASC"
  17. c2 = "name"
  18. c3 = "dscrp"
  19. c4 = "creator"
  20. c5 = "createdTime"
  21. c6 = "classCreated"
  22. c7 = "classCurrent"
  23. c8 = "status" # alive/deleted
  24. [Stucked]
  25. # VALUES(?, ?, ?, ...)
  26. c1_pk = "id INTEGER PRIMARY KEY ASC"
  27. c2 = "boardId"
  28. c3 = "eventId"
  29. c4 = "stuckedTime"
  30. c5 = "solvedTime"
  31. c6 = "status" # alive/deleted
  32. # ----- App Configuration -----
  33. DBType = "sqlite3"
  34. DBPath = "dev.db"
  35. lang = "en"
  36. listStyle = "tree"
  37. displayTimeZone = "utc+8"