Skip to content

Commit 64dc18b

Browse files
committed
chore: merge main
2 parents 875ba66 + b616e0b commit 64dc18b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+995
-888
lines changed

.gitignore

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1-
node_modules
2-
docs/.vitepress/dist
3-
.DS_STORE
1+
# Dependencies
2+
/node_modules
3+
4+
.DS_STORE
5+
# Production
6+
/build
7+
8+
# Generated files
9+
.docusaurus
10+
.cache-loader
11+
12+
# Misc
13+
.DS_Store
14+
.env.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,30 @@ npm run docs:dev
2323
```sh
2424
npm run docs:serve
2525
```
26+
27+
# Website
28+
29+
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
30+
31+
### Installation
32+
33+
```
34+
$ yarn
35+
```
36+
37+
### Local Development
38+
39+
```
40+
$ yarn start
41+
```
42+
43+
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
44+
45+
### Build
46+
47+
```
48+
$ yarn build
49+
```
50+
51+
This command generates static content into the `build` directory and can be served using any static contents hosting service.
52+

babel.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
3+
};
93.9 KB
Loading

blog/2021-08-26-welcome/index.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
slug: welcome
3+
title: Welcome
4+
authors: [odysseas]
5+
tags: [facebook, hello, docusaurus]
6+
---
7+
8+
[Docusaurus blogging features](https://docusaurus.io/docs/blog) are powered by the [blog plugin](https://docusaurus.io/docs/api/plugins/@docusaurus/plugin-content-blog).
9+
10+
Simply add Markdown files (or folders) to the `blog` directory.
11+
12+
Regular blog authors can be added to `authors.yml`.
13+
14+
The blog post date can be extracted from filenames, such as:
15+
16+
- `2019-05-30-welcome.md`
17+
- `2019-05-30-welcome/index.md`
18+
19+
A blog post folder can be convenient to co-locate blog post images:
20+
21+
![Docusaurus Plushie](./docusaurus-plushie-banner.jpeg)
22+
23+
The blog supports tags as well!
24+
25+
**And if you don't want a blog**: just delete this directory, and use `blog: false` in your Docusaurus config.

blog/authors.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
odysseas:
2+
name: Odysseas.eth
3+
title: Protocol
4+
url: https://twitter.com/odysseas_eth
5+
image_url: https://pbs.twimg.com/profile_images/1461381413345927179/vVV-AJvI_400x400.jpg

docs/agents/_category_.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"label": "Off-chain Agents",
3+
"position": 3,
4+
"link": {
5+
"type": "generated-index"
6+
}
7+
}

docs/agents/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# hey

docs/bridge/_category_.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"label": "Bridge",
3+
"position": 2,
4+
"link": {
5+
"type": "generated-index"
6+
}
7+
}

docs/developers/_category_.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"label": "Developers",
3+
"position": 5,
4+
"link": {
5+
"type": "generated-index"
6+
}
7+
}

0 commit comments

Comments
 (0)