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-14 15:29:36 +01:00
|
|
|
property multiple_instances : Bool = false
|
2023-04-23 15:59:29 +02:00
|
|
|
|
|
|
|
def initialize(@parent : DocMachine::Config)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|