Vizzuality/landgriffon

View on GitHub
api/config/default.json

Summary

Maintainability
Test Coverage
{
  "server": {
    "port": 3000,
    "loggerLevel": [
      "error",
      "warn",
      "log",
      "debug"
    ]
  },
  "client": {
    "url": null,
    "port": 8080
  },
  "auth": {
    "requireUserAuth": true,
    "requireUserAccountActivation": true,
    "signUpIsPublic": true,
    "jwt": {
      "expiresIn": "2h",
      "secret": null,
      "accountActivationSecret": "mySecretForAccountActivation",
      "passwordRecoverySecret": "mySecretForPasswordReset"
    },
    "password": {
      "minLength": 6,
      "includeNumerics": false,
      "includeUpperCase": false,
      "includeSpecialCharacters": false,
      "activationUrl": "/auth/activate-account",
      "resetUrl": "/auth/reset-password"
    }
  },
  "import": {
    "missingDataFallbackStrategy": "fallback"
  },
  "queue": {
    "enabled": true,
    "host": "localhost",
    "port": 6379,
    "database": 1,
    "importQueueName": "excel-import"
  },
  "geocodingCache": {
    "enabled": true,
    "store": "redis",
    "host": "localhost",
    "port": 6379,
    "database": 2,
    "TTL": 86400
  },
  "db": {
    "type": "postgres",
    "host": "localhost",
    "port": 5432,
    "username": "landgriffon",
    "password": "",
    "database": "landgriffon",
    "logging": false,
    "batchChunkSize": 2000,
    "maxQueryExecutionTime": null,
    "cacheEnabled": true,
    "cacheHost": "localhost",
    "cacheDatabase": 3
  },
  "tiler": {
    "host": "localhost",
    "port": 4000
  },
  "fileUploads": {
    "sizeLimit": 31457280,
    "storagePath": "/tmp/csv-uploads"
  },
  "geolocation": {
    "gmapsApiKey": null
  },
  "map": {
    "distributed": true
  },
  "notifications": {
    "email": {
      "sendGridApiKey": null
    }
  },
  "eudr": {
    "apiKey": null,
    "baseUrl": "null",
    "credentials": null,
    "dataset": null
  }
}