Project

General

Profile

1
// The file contents for the current environment will overwrite these during build.
2
// The build system defaults to the dev environment which uses `environment.ts`, but if you do
3
// `ng build --env=prod` then `environment.prod.ts` will be used instead.
4
// The list of which env maps to which file can be found in `.angular-cli.json`.
5

    
6
import {EnvProperties} from '../app/openaireLibrary/utils/properties/env-properties';
7

    
8
export let properties: EnvProperties = {
9
  environment: 'development',
10
  useCache: false,
11
  useLongCache: true,
12
  domain : "https://usagecounts.openaire.eu",
13
  baseLink: "",
14
  enablePiwikTrack: false,
15
  piwikBaseUrl: "https://analytics.openaire.eu/piwik.php?idsite=",
16
  piwikSiteId: "",
17
  metricsAPIURL: 'https://services.openaire.eu/usagestats/',
18
  loginUrl: 'http://dl170.madgik.di.uoa.gr:8180/dnet-login/openid_connect_login',
19
  userInfoUrl: 'http://dl170.madgik.di.uoa.gr:8180/dnet-openaire-users-1.0.0-SNAPSHOT/api/users/getUserInfo?accessToken=',
20
  logoutUrl: 'https://aai.openaire.eu/proxy/saml2/idp/SingleLogoutService.php?ReturnTo=',
21
  cookieDomain: '.di.uoa.gr',
22
  cacheUrl: "https://demo.openaire.eu/cache/get?url=",
23
  adminToolsAPIURL: 'http://duffy.di.uoa.gr:8080/uoa-admin-tools/',
24
  reCaptchaSiteKey: '6LcVtFIUAAAAAB2ac6xYivHxYXKoUvYRPi-6_rLu',
25
  admins: ['kostis30fylloy@gmail.com'],
26
  sushiliteURL: 'http://scoobydoo.di.uoa.gr/static/sushilite/',
27
  footerGrantText: "OpenAIRE has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreements No. 777541 and 101017452"
28
};
(3-3/3)