Skip to content
This repository was archived by the owner on Jun 30, 2024. It is now read-only.

Commit 8aab5de

Browse files
committed
Move to docusaurus
1 parent 4f968e0 commit 8aab5de

File tree

145 files changed

+8922
-1510
lines changed

Some content is hidden

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

145 files changed

+8922
-1510
lines changed

.gitignore

+20-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
1-
public/
2-
resources/
3-
node_modules/
4-
tech-doc-hugo
1+
# Dependencies
2+
/node_modules
3+
4+
# Production
5+
/build
6+
7+
# Generated files
8+
.docusaurus
9+
.cache-loader
10+
11+
# Misc
512
.DS_Store
6-
/resources/_gen/
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*
21+
/.docusaurus/

LICENSE

-201
This file was deleted.

README.md

+38-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,41 @@
1-
# Eventuous .NET docs
1+
# Website
22

3-
Documentation for [Eventuous](https://github.com/Eventuous/eventuous).
3+
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
44

5-
Published version is available at [public website](https://eventuous.dev).
5+
### Installation
66

7-
Hosted by Cloudflare Pages.
7+
```
8+
$ yarn
9+
```
10+
11+
### Local Development
12+
13+
```
14+
$ yarn start
15+
```
16+
17+
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
18+
19+
### Build
20+
21+
```
22+
$ yarn build
23+
```
24+
25+
This command generates static content into the `build` directory and can be served using any static contents hosting service.
26+
27+
### Deployment
28+
29+
Using SSH:
30+
31+
```
32+
$ USE_SSH=true yarn deploy
33+
```
34+
35+
Not using SSH:
36+
37+
```
38+
$ GIT_USER=<Your GitHub username> yarn deploy
39+
```
40+
41+
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

assets/icons/logo.svg

-5
This file was deleted.

assets/images/.gitkeep

Whitespace-only changes.

assets/scss/_variables_project.scss

-4
This file was deleted.

babel.config.js

+3
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+
};

blog/2019-05-28-first-blog-post.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
slug: first-blog-post
3+
title: First Blog Post
4+
authors:
5+
name: Gao Wei
6+
title: Docusaurus Core Team
7+
url: https://github.com/wgao19
8+
image_url: https://github.com/wgao19.png
9+
tags: [hola, docusaurus]
10+
---
11+
12+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet

0 commit comments

Comments
 (0)