removed deprecated methods
Mongo driver for Fluent 5.x.
5.x
FLUENT_MONGO_CONNECTION_URL
-
mongodb://127.0.0.1:27017/vapor
Please follow the instructions in the previous section on installing the MongoDB C Driver before proceeding.
Add FluentMongo to your dependencies in Package.swift:
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"]) ] )
©Copyright 2023 CCF 开源发展委员会 Powered by Trustie& IntelliDE 京ICP备13000930号
vapor-fluent-mongo
Mongo driver for Fluent
5.x
.Environment Variables
FLUENT_MONGO_CONNECTION_URL
-
mongodb://127.0.0.1:27017/vapor
Getting Started
Install FluentMongo
Please follow the instructions in the previous section on installing the MongoDB C Driver before proceeding.
Add FluentMongo to your dependencies in
Package.swift
: