Created
February 20, 2017 17:59
-
-
Save gtranchedone/c72407da977ff699b26ef737e6db6ce6 to your computer and use it in GitHub Desktop.
Testing Server Side Swift Apps - Package Manifesto
This file contains 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
import PackageDescription | |
let package = Package( | |
name: "VaporApp", | |
targets: [ | |
Target(name: "Executable", dependencies: ["App"]) | |
], | |
dependencies: [ | |
.Package(url: "https://github.com/vapor/vapor.git", majorVersion: 1, minor: 5) | |
], | |
exclude: [ | |
"Config", | |
"Database", | |
"Localization", | |
"Public", | |
"Resources", | |
] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment