Skip to content

Commit 1d6c0a5

Browse files
committed
initial commit
0 parents  commit 1d6c0a5

27 files changed

+821
-0
lines changed

.CONTRIBUTING.md

Whitespace-only changes.

.editorconfig

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[*.ts]
2+
indent_style=space
3+
indent_size=2
4+
max_line_length=80
5+
quote_type=single
6+
7+
[*.js]
8+
indent_style=space
9+
indent_size=2
10+
max_line_length=80
11+
quote_type=single
12+
13+
[*.json]
14+
indent_style=space
15+
indent_size=4
16+
max_line_length=80
17+
quote_type=single

.github/pull-request-template.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
### Description
2+
3+
Please explain the changes this PR addresses here.
4+
5+
### Checklist
6+
7+
- [ ] **Required** - I have added a label to this PR 🏷️
8+
- [ ] **Required** - I have run my changes through Grammarly
9+
- [ ] If pages have been moved, I have created redirects in the `wormhole-mkdocs` repo
+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: CheckMkDocsBuild
2+
on:
3+
# Trigger the workflow on a new pull request on main
4+
pull_request_target:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build-docs-site:
10+
runs-on: ubuntu-20.04
11+
steps:
12+
- uses: actions/checkout@v2
13+
14+
- name: Allow to move dotfiles
15+
run: |
16+
# move also dotfile with *
17+
shopt -s dotglob
18+
19+
- name: Clone Wormhole MKDocs
20+
run: |
21+
# clone mkdocs repo locally
22+
git clone https://${{ secrets.REPO_SCOPED_TOKEN }}@github.com/papermoonio/wormhole-mkdocs.git
23+
24+
- name: Move wormhole-docs contents to mkdocs repository
25+
run: |
26+
mkdir wormhole-mkdocs/wormhole-docs
27+
mv * wormhole-mkdocs/wormhole-docs &> /dev/null || echo "Error with mv expected due to recursively moving all contents into subfolder"
28+
29+
- name: Install pip requirements
30+
run: |
31+
cd wormhole-mkdocs
32+
# upgrade pip
33+
pip3 install --upgrade pip setuptools==65.7.0
34+
# install dependencies quietly
35+
pip3 install -r requirements.txt &> /dev/null && echo "Dependencies installed" || echo "Error while installing dependencies"
36+
37+
- name: Build mkdocs
38+
run: |
39+
cd wormhole-mkdocs
40+
# change destination build folder in mkdocs YAML to local site/
41+
sed -i 's/site_dir.*/site_dir: site/' mkdocs.yml
42+
# build project
43+
python3 -m mkdocs build

.pages

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
nav:
2+
- index.md
3+
- build
4+
- learn
5+
- tutorials

.snippets/code/example.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
`INSERT_CODE_SNIPPETS`;

.snippets/text/example.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# INSERT_TEXT_SNIPPETS

LICENSE

+674
Large diffs are not rendered by default.

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Documentation for Wormhole
2+
3+
This repository contains documentation for Wormhole, an interoperability platform powering multichain apps and bridges. Here, you'll find both high-level and technical information for developers.
4+
5+
## About This Site
6+
7+
The content in this repository is displayed on the Wormhole documentation site, [docs.wormhole.com](https://docs.moonbeam.network/), and is generated using [mkdocs](https://www.mkdocs.org). The theme used is [Material for MkDocs](https://squidfunk.github.io/mkdocs-material).
8+
9+
## Contributing
10+
11+
TODO

build/.pages

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
title: Build
2+
nav:
3+
- index.md
4+
- start-building

build/index.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: TODO
3+
description: TODO
4+
---

build/start-building/.pages

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
title: Start Building
2+
nav:
3+
- index.md
4+
- 'Supported Networks': 'supported-networks.md'

build/start-building/index.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: TODO
3+
description: TODO
4+
---

build/start-building/supported-networks.md

Whitespace-only changes.

index.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Home
3+
description: Explore Wormhole's comprehensive guides, tutorials, and resources to build secure multichain applications and enable seamless cross-chain communication.
4+
template: home.html
5+
hide:
6+
- navigation
7+
- feedback
8+
- toc
9+
- footer
10+
---

learn/.pages

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
title: Learn
2+
nav:
3+
- index.md
4+
- 'Introduction to Wormhole': 'introduction.md'
5+
- infrastructure

learn/index.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: TODO
3+
description: TODO
4+
---

learn/infrastructure/.pages

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
title: Infrastructure Components
2+
nav:
3+
- index.md
4+
- 'VAAs': 'vaas.md'

learn/infrastructure/index.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: TODO
3+
description: TODO
4+
---

learn/infrastructure/vaas.md

Whitespace-only changes.

learn/introduction.md

Whitespace-only changes.

tutorials/.pages

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
title: Tutorials
2+
nav:
3+
- index.md
4+
- messaging

tutorials/index.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: TODO
3+
description: TODO
4+
---

tutorials/messaging/.pages

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
title: Messaging
2+
nav:
3+
- index.md
4+
- 'Create Cross-Chain Contracts': 'cross-chain-contracts.md'

tutorials/messaging/cross-chain-contracts.md

Whitespace-only changes.

tutorials/messaging/index.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: TODO
3+
description: TODO
4+
---

variables.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
example: INSERT_VARIABLES

0 commit comments

Comments
 (0)