-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Example Apps for the Cytoscape Web</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
line-height: 1.6; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f4f4f4; | ||
} | ||
.container { | ||
max-width: 800px; | ||
margin: 20px auto; | ||
padding: 20px; | ||
background: #fff; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
} | ||
h1, | ||
h2, | ||
h3 { | ||
color: #333; | ||
} | ||
pre { | ||
background: #f4f4f4; | ||
padding: 10px; | ||
border: 1px solid #ddd; | ||
overflow-x: auto; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Example Apps for the Cytoscape Web</h1> | ||
|
||
<h2>Introduction</h2> | ||
<p> | ||
Cytoscape Web has a built-in <em>App</em> hosting mechanism. This | ||
repository is the reference implementations for using basic functions in | ||
the Apps. | ||
</p> | ||
<p>(TBD)</p> | ||
|
||
<h2>Quick Start</h2> | ||
<p>To run all of the apps locally, type:</p> | ||
<pre><code>npm run dev</code></pre> | ||
|
||
<h2>Example Apps</h2> | ||
<h3>hello-world</h3> | ||
|
||
<h2>Developer's Guide</h2> | ||
<h3>How to build and deploy</h3> | ||
|
||
<h2>Create a new App</h2> | ||
</div> | ||
</body> | ||
</html> |