forked from GMOD/Apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample-mysql-apollo-config.groovy
102 lines (99 loc) · 3.25 KB
/
sample-mysql-apollo-config.groovy
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
environments {
development {
// sample config to turn on debug logging in development e.g. for apollo run-local
log4j.main = {
debug "grails.app"
}
// sample config to edit apollo specific configs in development mode
apollo {
gff3.source = "testing"
}
dataSource{
dbCreate = "update" // one of 'create', 'create-drop', 'update', 'validate', ''
username = "<CHANGEME>"
password = "<CHANGEME>"
driverClassName = "com.mysql.jdbc.Driver"
dialect = org.hibernate.dialect.MySQL5InnoDBDialect
url = "jdbc:mysql://localhost/apollo"
}
}
test {
dataSource{
dbCreate = "create-drop" // one of 'create', 'create-drop', 'update', 'validate', ''
username = "<CHANGEME>"
password = "<CHANGEME>"
driverClassName = "com.mysql.jdbc.Driver"
dialect = org.hibernate.dialect.MySQL5InnoDBDialect
url = "jdbc:mysql://localhost/apollo-test"
}
}
production {
dataSource{
dbCreate = "update" // one of 'create', 'create-drop', 'update', 'validate', ''
username = "<CHANGEME>"
password = "<CHANGEME>"
driverClassName = "com.mysql.jdbc.Driver"
dialect = org.hibernate.dialect.MySQL5InnoDBDialect
url = "jdbc:mysql://localhost/apollo-production"
properties {
// See http://grails.org/doc/latest/guide/conf.html#dataSource for documentation
jmxEnabled = true
initialSize = 5
maxActive = 50
minIdle = 5
maxIdle = 25
maxWait = 10000
maxAge = 10 * 60000
timeBetweenEvictionRunsMillis = 5000
minEvictableIdleTimeMillis = 60000
validationQuery = "SELECT 1"
validationQueryTimeout = 3
validationInterval = 15000
testOnBorrow = true
testWhileIdle = true
testOnReturn = false
jdbcInterceptors = "ConnectionState"
defaultTransactionIsolation = java.sql.Connection.TRANSACTION_READ_COMMITTED
}
}
}
}
// Uncomment to make changes
//
//jbrowse {
// git {
// url= "https://github.com/GMOD/jbrowse"
// tag = "1.12.2-apollo"
//// branch = "master"
// alwaysPull = true
// alwaysRecheck = true
// }
// plugins {
// WebApollo{
// included = true
// }
// NeatHTMLFeatures{
// included = true
// }
// NeatCanvasFeatures{
// included = true
// }
// RegexSequenceSearch{
// included = true
// }
// HideTrackLabels{
// included = true
// }
//// MyVariantInfo {
//// git = 'https://github.com/GMOD/myvariantviewer'
//// branch = 'master'
//// alwaysRecheck = "true"
//// alwaysPull = "true"
//// }
//// SashimiPlot {
//// git = 'https://github.com/cmdcolin/sashimiplot'
//// branch = 'master'
//// alwaysPull = "true"
//// }
// }
//}