A stix module for Wetland ORM.
If you initialized a new stix project using the boards cli stix preset, stix-wetland will already be included in your project and you can move on to the using section. If not, keep reading.
- In your stix project, simply run
yarn add stix-wetland
. - Add the module to your project's
src/config/modules.ts
:
import { ModuleManagerConfigInterface } from 'stix';
import { Wetland } from 'stix-wetland';
export const modules: ModuleManagerConfigInterface = [
Wetland,
// Your other modules.
];
Configuring wetland can be done by adding a wetland
key to your config.
- Add
export * from './wetland';
to yoursrc/config/index.ts
. - Create a file at
src/config/wetland.ts
and addexport const wetland = {}
to it. - Configure wetland to your heart's desire.
You can find more info about the configuration options in the wetland documentation.
Note: Due to the nature of stix's module system, all configs conveniently get merged. This means that you could add a config/wetland.ts
to each of your modules specifying the entityPaths[]
for those module's entities.
Take a look at the doc/
directory to find documentation.
MIT.