Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to docusaurus v2 #366

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/about/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Introduction
---

<h1 align="left">
<img width="300" alt="Pitchfork" src="../assets/pitchfork_logo.svg">
<img width="300" alt="Pitchfork" src="../assets/pitchfork_logo.svg" />
</h1>

Pitchfork lifts Zipkin tracing data into Haystack.
Expand Down
2 changes: 2 additions & 0 deletions docs/assets/pitchfork_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
193 changes: 0 additions & 193 deletions website/README.md

This file was deleted.

85 changes: 0 additions & 85 deletions website/core/Footer.js

This file was deleted.

78 changes: 78 additions & 0 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
module.exports={
"title": "Pitchfork",
"tagline": "Convert tracing data between Zipkin and Haystack formats",
"url": "https://expediagroup.github.io",
"baseUrl": "/pitchfork/",
"organizationName": "ExpediaGroup",
"projectName": "Pitchfork",
"scripts": [
"https://buttons.github.io/buttons.js"
],
"favicon": "img/pitchfork_devil.svg",
"customFields": {
"users": [
{
"caption": "Hotels.com",
"image": "img/hotels_logo.svg",
"infoLink": "https://www.hotels.com",
"pinned": true
},
{
"caption": "Expedia Group",
"image": "img/expedia_group_logo.png",
"infoLink": "https://www.expediagroup.com/",
"pinned": true
}
],
"repoUrl": "https://github.com/ExpediaGroup/pitchfork"
},
"onBrokenLinks": "log",
"onBrokenMarkdownLinks": "log",
"presets": [
[
"@docusaurus/preset-classic",
{
"docs": {
"homePageId": "about/introduction",
"showLastUpdateAuthor": true,
"showLastUpdateTime": true,
"path": "../docs",
"sidebarPath": "../website/sidebars.json"
},
"blog": {},
"theme": {
"customCss": "../src/css/customTheme.css"
}
}
]
],
"plugins": [],
"themeConfig": {
"navbar": {
"title": "Pitchfork",
"logo": {
"src": "img/pitchfork_devil.svg"
},
"items": [
{
"to": "docs/",
"label": "Docs",
"position": "left"
},
{
"href": "https://github.com/ExpediaGroup/pitchfork",
"label": "GitHub",
"position": "left"
}
]
},
"image": "img/pitchfork_logo.svg",
"footer": {
"links": [],
"copyright": "Copyright © 2021 Expedia, Inc.",
"logo": {
"src": "img/pitchfork_devil.svg"
}
}
}
}
Loading