Blame view

webmail/config/config.yml 575 Bytes
b2a2b9d2   Suraputt Suntimitr   email
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
default:
  server:
    port: 3000
  email:
    username: deathbill99@gmail.com
    password: 4seasondl
  database:
    host: 'localhost'
    port: 27017

development:
  database:
    db: 'dev_db'
  email:
    username: deathbill99@gmail.com
    password: 4seasondl

test:
  database:
    db: 'test_db'
  email:
    username: deathbill99@gmail.com
    password: 4seasondl

production:
  server:
    port: 8000
  email:
    username: deathbill99@gmail.com
    password: 4seasondl
  database:
    db: 'prod_db'
    user: 'dbuser'
    password: 'pass'
  cache:
    dir: 'static'