Skip to content

Instantly share code, notes, and snippets.

@gtranchedone
Created February 20, 2017 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gtranchedone/c72407da977ff699b26ef737e6db6ce6 to your computer and use it in GitHub Desktop.
Save gtranchedone/c72407da977ff699b26ef737e6db6ce6 to your computer and use it in GitHub Desktop.
Testing Server Side Swift Apps - Package Manifesto
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