mirror of https://github.com/vapor/docs.git
44 lines
1.1 KiB
Markdown
44 lines
1.1 KiB
Markdown
# Using Auth
|
|
|
|
This section outlines how to import the Auth package both with or without a Vapor project.
|
|
|
|
## With Vapor
|
|
|
|
The easiest way to use Auth with Vapor is to include the Auth provider.
|
|
|
|
```swift
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Project",
|
|
dependencies: [
|
|
.Package(url: "https://github.com/vapor/vapor.git", majorVersion: 2),
|
|
.Package(url: "https://github.com/vapor/auth-provider.git", majorVersion: 1)
|
|
],
|
|
exclude: [ ... ]
|
|
)
|
|
```
|
|
|
|
The Auth provider package adds Auth to your project and adds some additional, vapor-specific conveniences like auth middleware.
|
|
|
|
Using `import AuthProvider` will import all of the auth middleware and the Authentication and Authorization modules.
|
|
|
|
## Just Auth
|
|
|
|
At the core of the Auth provider is an Authentication and Authorization module based on Fluent.
|
|
|
|
```swift
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Project",
|
|
dependencies: [
|
|
...
|
|
.Package(url: "https://github.com/vapor/auth.git", majorVersion: 1)
|
|
],
|
|
exclude: [ ... ]
|
|
)
|
|
```
|
|
|
|
Use `import Auth` to access the core auth classes.
|