Schafkopf-Server/Sources/App/configure.swift

14 lines
319 B
Swift
Raw Normal View History

2021-11-25 19:15:38 +01:00
import Vapor
2021-11-27 11:59:13 +01:00
var database: Database!
2021-11-25 19:15:38 +01:00
// configures your application
public func configure(_ app: Application) throws {
2021-11-27 11:59:13 +01:00
// serve files from /Public folder
app.middleware.use(FileMiddleware(publicDirectory: app.directory.publicDirectory))
2021-11-25 19:15:38 +01:00
2021-11-27 11:59:13 +01:00
database = Database()
2021-11-25 19:15:38 +01:00
// register routes
try routes(app)
}