Kitura-CouchDB
Kitura-CouchDB copied to clipboard
CouchDB adapter for Kitura
## Description Added a `CouchDatabase` typealias to the `Database` class. ## Motivation and Context Because of https://github.com/Kitura/Swift-Kuery-ORM/issues/22 ## Checklist: - [x] I have submitted a [CLA form](https://github.com/IBM-Swift/CLA) - N/A If...
The old travis.org service is [no longer available](https://blog.travis-ci.com/2021-05-07-orgshutdown). You need to activate something in order to move the CI to travis-ci.com. PRs won't be able to get merged otherwise
- Remove Swift 4.x from CI - Add Swift 5.4 to CI - Renamed github org references to Kitura
Hi I want to make a big database for eg in SQL I have tables for login, customer, projects, etc how to achieve this on CouchDB
I get this error when running 'swift build' in terminal of Macbook. What I suppose to change to fix it? 'KituraTIL' /Users/Chuck/KituraTIL: error: dependency 'CouchDB' in target 'KituraTIL' requires explicit...
Update various resource, package and copyright references
With Swift 5, use Kitura-NIO 2.x
I have the following view : ``` let design = DesignDocument(_id: "_design/mydesign", views: [ "count_doc": [ "map": "function(doc) { if(doc.type == 'mydoc') { emit(doc._id, 1); } }", "reduce": "_count" ]...
Currently there is no chance to define a custom dateEncodingStrategy. The JSONEncoder object is created without any config options. ``` swift class func documentRequest(document: D, options: [ClientRequest.Options], callback: @escaping (DocumentResponse?,...
When I add .stale(.OK) as query parameter I get status code 400 back. I am using Kitura NIO There are two things I had to do to fix it: 1...