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(
46
46
.library (name : " YOUR_PROJECT_NAME" , targets : [" YOUR_PROJECT_NAME" ])
47
47
],
48
48
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" ))
50
52
]
51
53
...
52
54
targets: [
@@ -105,6 +107,8 @@ public func configure(_ app: Application) throws {
105
107
let configuration = try ParseServerConfiguration (app : app)
106
108
try ParseServerSwift.initialize (configuration, app : app)
107
109
110
+ // Add any additional code to configure your server here...
111
+
108
112
// register routes
109
113
try routes (app)
110
114
}
@@ -124,6 +128,8 @@ public func configure(_ app: Application) throws {
124
128
parseServerURLString : " primaryKey" )
125
129
try ParseServerSwift.initialize (configuration, app : app)
126
130
131
+ // Add any additional code to configure your server here...
132
+
127
133
// register routes
128
134
try routes (app)
129
135
}
You can’t perform that action at this time.
0 commit comments