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

created github pages directory #38

Merged
merged 4 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ reports/
*.tgz
npm-debug.log
npm
./package-lock.json
/package-lock.json
1 change: 1 addition & 0 deletions site/content/alternatives.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
description: List of alternatives and how they differ from this project
title: Alternatives
date: 2024-04-24
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see, let me dig into why this is requiring a date. We can leave it like this for now. Thanks!

---

List of alternatives to the Message Broker.
Expand Down
71 changes: 0 additions & 71 deletions site/content/news/hello-world.mdx
aidanm3341 marked this conversation as resolved.
Outdated
Show resolved Hide resolved

This file was deleted.

8 changes: 4 additions & 4 deletions site/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ const { plugins } = require('./src/config/base-gatsby-plugins');

module.exports = {
siteMetadata: {
aidanm3341 marked this conversation as resolved.
Show resolved Hide resolved
title: `Morgan Stanley Open Source Software`,
description: `Morgan Stanley Open Source Software`,
siteUrl: 'http://opensource.morganstanley.com',
title: `Message Broker`,
description: `The Message Broker is a Typescript library which aims to provide asynchronous communication between typescript components.`,
siteUrl: 'http://opensource.morganstanley.com/message-broker',
documentationUrl: false,
// documentationUrl: url-of.documentation.site,
},
pathPrefix: `/`, // include subdirectory
pathPrefix: `/message-broker`, // include subdirectory
plugins,
};