Created
June 27, 2018 14:09
-
-
Save azamsharp/883539393e33f1389ee16323d5790a46 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// swift-tools-version:4.0 | |
import PackageDescription | |
let package = Package( | |
name: "hello-leaf", | |
dependencies: [ | |
// 💧 A server-side Swift web framework. | |
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0"), | |
.package(url: "https://github.com/vapor/leaf.git", from: "3.0.0-rc"), | |
.package(url: "https://github.com/vapor/fluent-postgresql.git", from: "1.0.0-rc"), | |
.package(url: "https://github.com/vapor/fluent-sqlite.git", from: "3.0.0-rc.2") | |
], | |
targets: [ | |
.target(name: "App", dependencies: ["FluentSQLite","FluentPostgreSQL", "Vapor","Leaf"]), | |
.target(name: "Run", dependencies: ["App"]), | |
.testTarget(name: "AppTests", dependencies: ["App"]) | |
] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment