Skip to content

Commit 6ffaacb

Browse files
authored
Update README.md
1 parent 27c71c2 commit 6ffaacb

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

README.md

+13-5
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,23 @@ SDK documentation can be found [here](https://swiftpackageindex.com/indiepitcher
1111

1212
The SDK is designed to work with any framework built on top of Swift Nio - Vapor, Hummingbird, or AWS Lamda is supported.
1313

14-
Add the dependency to your `Package.swift` file
15-
```
14+
1) Add the dependency to your `Package.swift` file
15+
```swift
1616
.package(url: "https://github.com/IndiePitcher/indiepitcher-swift.git", from: "1.0.0"),
1717
```
1818

19-
Add IndiePitcher to appropriate target(s) of your project
20-
```
19+
2) Add IndiePitcher to appropriate target(s) of your project
20+
```swift
2121
.product(name: "IndiePitcherSwift", package: "indiepitcher-swift")
2222
```
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+
2331
**Using the SDK:**
2432
- First, you need to get an API key. Go to the IndiePitcher dashboard, create a project, and generate a public API key.
2533
- 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 {
7381

7482
func handle(_ event: String, context: LambdaContext) async throws -> String {
7583

76-
let indiePitcher = IndiePitcher(client: .shared, apiKey: indiePitcherApiKey)
84+
let indiePitcher = IndiePitcher(apiKey: indiePitcherApiKey)
7785

7886
let emailBody = """
7987
This is an email sent from a **AWS Lambda function**!

0 commit comments

Comments
 (0)