forked from rayford295/GeoGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfork.html
More file actions
99 lines (89 loc) · 4.1 KB
/
fork.html
File metadata and controls
99 lines (89 loc) · 4.1 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Make Your Own | Rayford GeoGraph</title>
<meta
name="description"
content="Fork Rayford GeoGraph and build your own research knowledge graph from papers, repositories, datasets, and Scholar metadata."
>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700;9..144,800&family=Manrope:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect width='64' height='64' rx='14' fill='%23102019'/%3E%3Ctext x='32' y='39' text-anchor='middle' font-family='Arial' font-size='22' font-weight='800' fill='%231fc7a1'%3ERG%3C/text%3E%3C/svg%3E">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<canvas class="starfield" id="starfield" aria-hidden="true"></canvas>
<div class="app-shell guide-shell">
<header class="topbar">
<a class="brand" href="./index.html" aria-label="Rayford GeoGraph">
<span class="brand-mark">RG</span>
<span>
<strong>Rayford GeoGraph</strong>
<small>Fork it, rename it, and build your own research atlas</small>
</span>
</a>
<nav class="top-links guide-links" aria-label="Guide links">
<a href="./index.html">Back to Atlas</a>
<a href="https://github.com/rayford295/Rayford-GeoGraph/fork" target="_blank" rel="noopener">Fork on GitHub</a>
<a href="https://github.com/rayford295/Rayford-GeoGraph/blob/main/docs/FORK_GUIDE.md" target="_blank" rel="noopener">Full Guide</a>
</nav>
</header>
<main class="guide-page">
<section class="guide-hero">
<p class="kicker">Fork Guide</p>
<h1>Turn this star map into your own research knowledge graph.</h1>
<p>
Rayford GeoGraph is built so another researcher can fork it, replace the paper profiles, connect their repositories,
add their Google Scholar profile, and publish a public research atlas with GitHub Pages.
</p>
</section>
<section class="guide-grid">
<article class="guide-panel">
<span>01</span>
<h2>Fork and Rename</h2>
<p>Fork the repository, rename it to your own atlas name, and enable GitHub Pages from the `main` branch root.</p>
</article>
<article class="guide-panel">
<span>02</span>
<h2>Replace Identity</h2>
<p>Update `README.md`, `README.zh-CN.md`, `package.json`, `index.html`, and Scholar profile settings.</p>
</article>
<article class="guide-panel">
<span>03</span>
<h2>Add Paper Nodes</h2>
<p>Copy `wiki/papers/_template.md`, fill the frontmatter, add summaries, methods, links, and graph connections.</p>
</article>
<article class="guide-panel">
<span>04</span>
<h2>Build the Graph</h2>
<p>Run `npm run build`. This compiles markdown paper profiles into the browser-readable `data.js` graph dataset.</p>
</article>
<article class="guide-panel">
<span>05</span>
<h2>Update Scholar</h2>
<p>Replace the Scholar user id in `scripts/fetch-scholar.js`, then run `npm run scholar:update` once locally.</p>
</article>
<article class="guide-panel">
<span>06</span>
<h2>Publish</h2>
<p>Commit, push, and open your GitHub Pages URL. The weekly Scholar workflow will keep public profile metadata fresh.</p>
</article>
</section>
<section class="guide-command">
<h2>Minimal Commands</h2>
<pre><code>git clone https://github.com/YOUR_NAME/YOUR_GEOGRAPH.git
cd YOUR_GEOGRAPH
npm run build
npm run scholar:update</code></pre>
</section>
</main>
</div>
<script>
window.researchMapData = { nodes: [], themes: [] };
</script>
<script src="./script.js"></script>
</body>
</html>