-
Notifications
You must be signed in to change notification settings - Fork 1
/
my-index.ejs
43 lines (37 loc) · 1.55 KB
/
my-index.ejs
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html class="cbioportal-frontend">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<link rel="icon" href="/images/cbioportal_icon.png"/>
<title>cBioPortal for Cancer Genomics</title>
<script>
window.devContext = true;
// @ts-ignore: ENV_* are defined in webpack.config.js
// genomeNexusApiUrl : ENV_GENOME_NEXUS_URL,
window.frontendConfig = {
//configurationServiceUrl:"http://localhost:8080/config_service.jsp",
//frontendUrl:'//'+window.location.host + '/',
//apiRoot: 'http://www.cbioportal.org/rc',
//sessionServiceUrl:'http://www.cbioportal.org/rc/api-legacy/proxy/session/',
// custom_tabs:[
// {
// "title": "Custom Tab",
// "location": "RESULTS_PAGE",
// "mountCallbackName": "renderCustomTab1",
// "pathsToJs":["http:127.0.0.1:8081/customTab1.js"],
// "showWithMultipleStudies": true,
// "customParameters": { example:1 },
// "unmountOnHide":false
// }
// ],
serverConfig:{}
};
</script>
<script src="/reactapp/common.bundle.js"></script>
<link href="/reactapp/prefixed-bootstrap.min.css" rel="stylesheet"></link>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet" />
</head>
<body>
<div id="reactRoot"></div>
</body>
</html>