1{
2  "deps": [
3  { "name": "fauxton" },
4  { "name": "components" },
5  { "name": "databases" },
6  { "name": "documents" },
7  { "name": "setup" },
8  { "name": "activetasks" },
9  { "name": "cluster" },
10  { "name": "config" },
11  { "name": "replication" },
12  { "name": "search" },
13  { "name": "cors" },
14  { "name": "permissions" },
15  { "name": "auth" },
16  { "name": "verifyinstall" },
17  { "name": "documentation" },
18  { "name": "news" }
19  ],
20    "template": {
21      "development": {
22        "src": "./assets/index.underscore",
23        "dest": "dist/debug/index.html",
24        "variables": {
25          "title": "Project Fauxton",
26          "generationLabel": "Fauxton Dev",
27          "largeLogoPath": "../../../../../assets/img/CouchDB-negative-logo.png",
28          "smallLogoPath": "../../../../../assets/img/couchdb-logo.png"
29        },
30        "app": {
31          "root": "/",
32          "host": "./",
33          "version": "1.0.dev"
34        }
35      },
36      "release": {
37        "src": "assets/index.underscore",
38        "dest": "dist/debug/index.html",
39        "variables": {
40          "title": "Project Fauxton",
41          "generationLabel": "Fauxton Release",
42          "largeLogoPath": "../../../../../assets/img/CouchDB-negative-logo.png",
43          "smallLogoPath": "../../../../../assets/img/couchdb-logo.png"
44        },
45        "app": {
46          "root": "/",
47          "host": "../",
48          "version": "1.0"
49        }
50      },
51      "couchapp": {
52        "src": "assets/index.underscore",
53        "dest": "dist/debug/index.html",
54        "variables": {
55          "title": "Project Fauxton",
56          "generationLabel": "Fauxton Couchapp",
57          "largeLogoPath": "../../../../../assets/img/CouchDB-negative-logo.png",
58          "smallLogoPath": "../../../../../assets/img/couchdb-logo.png"
59        },
60        "app": {
61          "root": "/",
62          "host": "../../..",
63          "version": "1.0"
64        }
65      }
66    },
67
68    "couch_config": {
69      "fauxton": {
70        "db": "http://localhost:5984/fauxton",
71        "app": "./couchapp.js",
72        "options": {
73          "okay_if_missing": true
74        }
75      }
76    },
77
78    "nightwatch": {
79      "fauxton_username": "tester",
80      "password": "testerpass",
81      "fauxton_port": "8000",
82      "db_protocol": "http",
83      "db_host": "localhost",
84      "db_port": "5984",
85      "custom_commands_path": ["test/nightwatch_tests/custom-commands", "test/nightwatch_tests/custom-commands/auth"],
86      "globals_path": "./helpers/helpers.js",
87      "selenium_port": "4444"
88    }
89}
90