Swift ORM (queries, models, relations, etc) built on MongoDB.
Mongo driver for Fluent 5.x
.
Name | Required | Default | Value (e.g.) | Description |
---|---|---|---|---|
FLUENT_MONGO_CONNECTION_URL |
✔ | - |
mongodb://127.0.0.1:27017/vapor |
Mongo connection string. |
Please follow the instructions in the previous section on installing the MongoDB C Driver before proceeding.
Add FluentMongo to your dependencies in Package.swift
:
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "MyPackage",
dependencies: [
.package(url: "https://github.com/asensei/fluent-mongo.git", from: "VERSION.STRING.HERE"),
],
targets: [
.target(name: "MyPackage", dependencies: ["FluentMongo"])
]
)