Skip to content

Instantly share code, notes, and snippets.

@jimmya
Created May 15, 2020 18:07
Show Gist options
  • Save jimmya/d4d9290f6cdedbc12a0eacec92a3770d to your computer and use it in GitHub Desktop.
Save jimmya/d4d9290f6cdedbc12a0eacec92a3770d to your computer and use it in GitHub Desktop.
import Vapor
extension Environment {
static var databaseURL: URL {
guard let urlString = Environment.get("DATABASE_URL"), let url = URL(string: urlString) else {
fatalError("DATABASE_URL not configured")
}
return url
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment