-
Notifications
You must be signed in to change notification settings - Fork 5
/
database.yml
52 lines (49 loc) · 993 Bytes
/
database.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
45
46
47
48
49
50
51
52
test:
adapter: mysql
encoding: utf8
database: canvas_test
host: localhost
username: canvas
timeout: 5000
queue:
adapter: mysql
encoding: utf8
database: canvas_queue_test
host: localhost
username: canvas
timeout: 5000
test-in-memory:
adapter: sqlite3
encoding: utf8
database: ':memory:'
pool: 1
development:
adapter: mysql
encoding: utf8
database: canvas_development
host: localhost
username: canvas
timeout: 5000
queue:
adapter: mysql
encoding: utf8
database: canvas_queue_development
host: localhost
username: canvas
timeout: 5000
production:
adapter: mysql
encoding: utf8
database: canvas_production
host: localhost
username: canvas
password: THIS-IS-A-VERY-SECURE-CANVAS-PASSWORD
timeout: 5000
queue:
adapter: mysql
encoding: utf8
database: canvas_queue_production
host: localhost
username: canvas
password: THIS-IS-A-VERY-SECURE-CANVAS-PASSWORD
timeout: 5000