switch back to docker

This commit is contained in:
2024-07-05 10:09:18 -07:00
parent 261b9686bc
commit 07a19be4b3
34 changed files with 259 additions and 715 deletions

9
Sources/Run/main.swift Normal file
View File

@@ -0,0 +1,9 @@
import App
import Vapor
var env = try Environment.detect()
try LoggingSystem.bootstrap(from: &env)
let app = Application(env)
defer { app.shutdown() }
try configure(app)
try app.run()