Blame view

server/datasources.json 529 Bytes
f7563de62   Palak Handa   first commit
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
  {
    "db": {
      "host": "localhost",
      "port": 3306,
      "database": "startupapp",
      "password": "startupapp",
      "name": "db",
      "connector": "mysql",
      "user": "startupapp"
    },
    "email": {
      "name": "email",
      "defaultForType": "mail",
      "connector": "mail",
      "transports": [
        {
          "type": "SMTP",
          "host": "smtp.gmail.com",
          "secure": true,
          "port": 465,
          "auth": {
            "user": "test@viithiisys.com",
            "pass": "password!@#"
          }
        }
      ]
    }
  }