Vapor

From Coder Merlin
Revision as of 09:05, 2 September 2021 by David-ben-yaakov (talk | contribs)
Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder

Getting Started[edit]

vapor new hello -n

Configuration[edit]

In the path: ./Sources/App/configure.swift:

// Set local port
guard let portString = Environment.get("VAPOR_LOCAL_PORT"),
      let port = Int(portString) else {
    fatalError("Failed to determine VAPOR LOCAL PORT from environment")
}
app.http.server.configuration.port = port

// Set local host
guard let hostname = Environment.get("VAPOR_LOCAL_HOST") else {
    fatalError("Failed to determine VAPOR LOCAL HOST from environment")
}
app.http.server.configuration.hostname = hostname

References[edit]

Fluent[edit]