-
Notifications
You must be signed in to change notification settings - Fork 8
/
.command-engine.yml
44 lines (40 loc) · 1.02 KB
/
.command-engine.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
project_name: chakin
strict: true
module:
base_module: chado
instance_cls: "<class 'chado.ChadoInstance'>"
instance_func: ChadoInstance
instance_args: []
instance_kwargs:
dbhost: "localhost"
dbuser: "postgres"
dbpass: "postgres"
dbname: "postgres"
dbschema: "public"
dbport: 5432
ignore:
top_attrs:
- 'session'
- 'dbname'
- 'dbhost'
- 'dbport'
- 'dbuser'
- 'dbpass'
- 'dburl'
- 'dbschema'
- 'get_cvterm_id'
- 'get_cvterm_name'
- 'create_cvterm'
- 'get_pub_id'
- 'model'
funcs:
- get
- post
documentation: |
Chakin is a set of wrappers for accessing Chado. Each utility is implemented as
a subcommand of ``chakin``. This section of the documentation
describes these commands.
docs_import:
- sqlalchemy
docs_reset_hook: |
sqlalchemy.orm.clear_mappers()