Skip to content

Commit 1b17c37

Browse files
committed
Initial commit
0 parents  commit 1b17c37

File tree

194 files changed

+10893
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

194 files changed

+10893
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**CHANGELOG**

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
test test test

Package.swift

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// swift-tools-version:5.1
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "Appwrite",
7+
products: [
8+
.library(
9+
name: "Appwrite",
10+
targets: ["Appwrite"]
11+
),
12+
],
13+
dependencies: [
14+
.package(url: "https://github.com/swift-server/async-http-client.git", from: "1.0.0"),
15+
.package(url: "https://github.com/abnegate/swockets.git", .branch("develop"))
16+
],
17+
targets: [
18+
.target(
19+
name: "Appwrite",
20+
dependencies: [
21+
.product(name: "AsyncHTTPClient", package: "async-http-client"),
22+
"Swockets"
23+
]
24+
)
25+
],
26+
swiftLanguageVersions: [.v5]
27+
)

README.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Appwrite Apple SDK
2+
3+
![Swift Package Manager](https://img.shields.io/github/v/release/repoowner/reponame.svg?color=green&style=flat-square)
4+
![License](https://img.shields.io/github/license/repoowner/reponame.svg?style=flat-square)
5+
![Version](https://img.shields.io/badge/api%20version-0.8.0-blue.svg?style=flat-square)
6+
[![Build Status](https://img.shields.io/travis/com/appwrite/sdk-generator?style=flat-square)](https://travis-ci.com/appwrite/sdk-generator)
7+
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite_io?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite_io)
8+
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
9+
10+
**WORK IN PROGRESS - NOT READY FOR USAGE**
11+
12+
![Appwrite](https://appwrite.io/v1/images/console.png)
13+
14+
## Installation
15+
16+
### Xcode with Swift Package Manager
17+
18+
The Appwrite Swift SDK is available via multiple package managers, including Swift Package Manager. In order to use the Appwrite Swift SDK from Xcode, select File > Swift Packages > **Add Package Dependency**
19+
20+
In the dialog that appears, enter the Appwrite Swift SDK [package URL]() and click **Next**.
21+
22+
Once the repository information is loaded, add your version rules and click **Next** again.
23+
24+
On the final screen, make sure you see `Appwrite` as a product selected for your target:
25+
26+
### Swift Package Manager
27+
28+
Add the package to your `Package.swift` dependencies:
29+
30+
```swift
31+
dependencies: [
32+
.package(url: "https://github.com/appwrite/sdk-for-apple", from: "0.0.1"),
33+
],
34+
```
35+
36+
Then add it to your target:
37+
38+
```swift
39+
.target(
40+
name: "YourAppTarget",
41+
dependencies: [
42+
"Appwrite"
43+
]
44+
),
45+
```
46+
47+
## Contribution
48+
49+
This library is auto-generated by Appwrite custom [SDK Generator](https://github.com/appwrite/sdk-generator). To learn more about how you can help us improve this SDK, please check the [contribution guide](https://github.com/appwrite/sdk-generator/blob/master/CONTRIBUTING.md) before sending a pull-request.
50+
51+
## License
52+
53+
Please see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information.

0 commit comments

Comments
 (0)