@@ -11,15 +11,23 @@ SDK documentation can be found [here](https://swiftpackageindex.com/indiepitcher
11
11
12
12
The SDK is designed to work with any framework built on top of Swift Nio - Vapor, Hummingbird, or AWS Lamda is supported.
13
13
14
- Add the dependency to your ` Package.swift ` file
15
- ```
14
+ 1 ) Add the dependency to your ` Package.swift ` file
15
+ ``` swift
16
16
.package (url : " https://github.com/IndiePitcher/indiepitcher-swift.git" , from : " 1.0.0" ),
17
17
```
18
18
19
- Add IndiePitcher to appropriate target(s) of your project
20
- ```
19
+ 2 ) Add IndiePitcher to appropriate target(s) of your project
20
+ ``` swift
21
21
.product (name : " IndiePitcherSwift" , package : " indiepitcher-swift" )
22
22
```
23
+
24
+ You can also use the CLI instead
25
+ ``` bash
26
+ swift package add-dependency https://github.com/IndiePitcher/indiepitcher-swift.git --from 1.0.0
27
+ swift package add-target-dependency IndiePitcherSwift --package indiepitcher-swift MyTarget
28
+ ```
29
+
30
+
23
31
** Using the SDK:**
24
32
- First, you need to get an API key. Go to the IndiePitcher dashboard, create a project, and generate a public API key.
25
33
- Add the key to your ` .env ` file. Following examples will assume that you've added the key under ` IP_SECRET_API_KEY ` key.
@@ -73,7 +81,7 @@ struct MyLambda: SimpleLambdaHandler {
73
81
74
82
func handle (_ event : String , context : LambdaContext) async throws -> String {
75
83
76
- let indiePitcher = IndiePitcher (client : . shared , apiKey : indiePitcherApiKey)
84
+ let indiePitcher = IndiePitcher (apiKey : indiePitcherApiKey)
77
85
78
86
let emailBody = """
79
87
This is an email sent from a **AWS Lambda function**!
0 commit comments