File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,9 @@ let package = Package(
4646 .library (name : " YOUR_PROJECT_NAME" , targets : [" YOUR_PROJECT_NAME" ])
4747 ],
4848 dependencies : [
49- .package (url : " https://github.com/netreconlab/ParseServerSwift" , .upToNextMajor (from : " 0.7.0" )),
49+ .package (url : " https://github.com/netreconlab/ParseServerSwift" , .upToNextMajor (from : " 0.8.4" )),
50+ .package (url : " https://github.com/vapor/vapor.git" , .upToNextMajor (from : " 4.76.2" )),
51+ .package (url : " https://github.com/netreconlab/Parse-Swift.git" , .upToNextMajor (from : " 5.7.0" ))
5052 ]
5153 ...
5254 targets: [
@@ -105,6 +107,8 @@ public func configure(_ app: Application) throws {
105107 let configuration = try ParseServerConfiguration (app : app)
106108 try ParseServerSwift.initialize (configuration, app : app)
107109
110+ // Add any additional code to configure your server here...
111+
108112 // register routes
109113 try routes (app)
110114}
@@ -124,6 +128,8 @@ public func configure(_ app: Application) throws {
124128 parseServerURLString : " primaryKey" )
125129 try ParseServerSwift.initialize (configuration, app : app)
126130
131+ // Add any additional code to configure your server here...
132+
127133 // register routes
128134 try routes (app)
129135}
You can’t perform that action at this time.
0 commit comments