@naturalcycles/abba 1.8.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/readme.md +6 -6
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -90,14 +90,14 @@ This template doesn't rely on any external dependencies or services._
|
|
|
90
90
|
|
|
91
91
|
### Create an instance of Abba
|
|
92
92
|
|
|
93
|
-
|
|
94
|
-
exist it will fallback to trying to use the `ABBA_DB_URL` which must be added to your environment
|
|
95
|
-
variables.
|
|
93
|
+
(Currently supports MySQL, probably all DocumentDBs but not verified.)
|
|
96
94
|
|
|
97
95
|
```js
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
96
|
+
type AbbaConfig = {
|
|
97
|
+
db: CommonDB // from @naturalcycles/db-lib
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
const abba = new Abba(config: AbbaConfig)
|
|
101
101
|
```
|
|
102
102
|
|
|
103
103
|
### Create a new experiment
|