forked from inaturalist/iNaturalistAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js.ci
28 lines (28 loc) · 799 Bytes
/
config.js.ci
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
module.exports = {
apiURL: "http://localhost:3000",
currentVersionURL: "http://localhost:4000/v1",
environment: "test",
elasticsearch: {
host: "http://localhost:9200",
geoPointField: "location",
searchIndex: "test_observations"
},
database: {
user: "postgres",
host: "127.0.0.1",
port: 5432,
geometry_field: "geom",
dbname: "inaturalist_test"
},
websiteURL: "http://localhost:3000/",
staticImagePrefix: "http://localhost:3000/attachments/",
userImagePrefix: "/attachments/users/icons/",
imageProcesing: {
taxaFilePath: "/home/travis/build/inaturalist/iNaturalistAPI/vision-taxa.txt",
uploadsDir: "/tmp/",
tensorappURL: "http://localhost:6006"
},
debug: true,
jwtSecret: "secret",
jwtApplicationSecret: "application_secret"
}