2023-04-23 15:59:29 +02:00
|
|
|
|
|
|
|
module DocMachine::Build
|
|
|
|
class Config
|
|
|
|
property data_dir : String = Dir.current
|
|
|
|
property action : String = "watch"
|
|
|
|
property enable_tty : Bool = false
|
2024-02-14 14:29:41 +01:00
|
|
|
property port : Int32 = 5100
|
2024-02-15 18:56:15 +01:00
|
|
|
property enable_multiple : Bool = false
|
|
|
|
property enable_cache : Bool = false
|
2023-04-23 15:59:29 +02:00
|
|
|
|
|
|
|
def initialize(@parent : DocMachine::Config)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|