-
-
Notifications
You must be signed in to change notification settings - Fork 681
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
feat: add adopters section to case study page #2232
Merged
Merged
Changes from 4 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
ccf5a55
adoptors added
vishvamsinh28 fb17b2c
yaml and ui changes
vishvamsinh28 531467d
code updated
vishvamsinh28 b0b538e
code and data updates
vishvamsinh28 417984c
code updates
vishvamsinh28 87dabc5
path changes
vishvamsinh28 4f18ebb
Merge branch 'master' into Extend#2135
derberg 8cc044b
Merge branch 'master' into Extend#2135
akshatnema 9ad35b5
Merge branch 'master' into Extend#2135
akshatnema 590f863
Merge branch 'master' into Extend#2135
derberg 4232685
design updates
vishvamsinh28 0953060
added tests
vishvamsinh28 ab21759
Merge branch 'Extend#2135' of https://github.com/vishvamsinh28/websit…
vishvamsinh28 4881f62
Merge branch 'master' into Extend#2135
derberg 283bcc6
test updaates
vishvamsinh28 c14b98b
Merge branch 'Extend#2135' of https://github.com/vishvamsinh28/websit…
vishvamsinh28 5bf5f18
test updates 2
vishvamsinh28 dde0876
test updates 3
vishvamsinh28 7f18339
correct pages/casestudies tests
akshatnema File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
- companyName: Reiffeisen Bank | ||
useCase: Continuous Integration and Continuous Delivery (CI/CD) pipeline based on GitOps to deploy a topology built on Async API definitions using a Kubernetes operator to an Apache Pulsar cluster. | ||
resources: | ||
- title: Video - From an AsyncAPI Definition to a Deployed Pulsar Topology Via GitOps | ||
link: https://www.youtube.com/watch?v=_MwzLZMwFN8 | ||
|
||
- companyName: LEGO Group | ||
useCase: Broker management, where developers do not access the management console themselves, but rely on uploading AsyncAPI documents to a self service API that provisions access and topics specified in documents. | ||
resources: | ||
- title: Video - Documentation as Configuration for Management of Apache Pulsar | ||
link: https://www.youtube.com/watch?v=m8I0fYjx6Cc | ||
|
||
- companyName: LEGO Group | ||
useCase: Define, document and distribute event-driven APIs. Ensuring consistency and governance | ||
resources: | ||
- title: Video - Cross-Domain Events with AsyncAPI and AWS | ||
link: https://www.youtube.com/watch?v=qjarcJQVLOg | ||
|
||
- companyName: Bank of New Zealand | ||
useCase: Decentralized company-wide governance strategy for API. A self service for publishing APIs and docs. | ||
resources: | ||
- title: "Video - Self-service Events & Decentralised Governance with AsyncAPI: A Real World Example" | ||
link: https://www.confluent.io/events/kafka-summit-apac-2021/self-service-events-and-decentralised-governance-with-asyncapi-a-real-world/ | ||
|
||
- companyName: Zora Robotics | ||
useCase: Documenting lot products public MQTT API and building a developers portal. | ||
resources: | ||
- title: Video - Buliding and managing an extensive API for Robotics and loT | ||
link: https://www.youtube.com/watch?v=yjHgT0n2BtA | ||
- title: Docs - Buliding and managing an extensive API for Robotics and loT | ||
link: https://docs.zorabots.be/dev-mqtt-docs/latest/index.html | ||
|
||
- companyName: Walmart | ||
useCase: Managing a central API Hub for internal teams. Using AsyncAPI for events discoverability an visibility in a single place. AsyncAPI also enabled company-wide governance on asynchronous APIs. | ||
resources: | ||
- title: Video - Time For AsyncAPI Specification | ||
link: https://www.youtube.com/watch?v=SxTpGRaNIPo | ||
|
||
- companyName: eBay | ||
useCase: Enabling partners to build with eBay through asynchronous communication. Public AsyncAPI documents enable code generation and faster integration. It also enables governance and standardisation. | ||
resources: | ||
- title: "Video - AsyncAPI 2.0: Enabling the Event-Driven World" | ||
link: https://www.youtube.com/watch?v=SxTpGRaNIPo | ||
- title: "Article - AsyncAPI 2.0: Enabling the Event-Driven World" | ||
link: https://innovation.ebayinc.com/tech/engineering/asyncapi-2-0-enabling-the-event-driven-world/ | ||
- title: Docs - Overview of Notification API with public AsyncAPI documents | ||
link: https://developer.ebay.com/api-docs/commerce/notification/overview.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
const { promises: { readFile, writeFile } } = require('fs'); | ||
const { convertToJson } = require('../utils'); | ||
const { resolve } = require('path'); | ||
|
||
module.exports = async function buildAdoptersList() { | ||
try { | ||
const AdoptersContent = await readFile('config/adopters/adopters.yml', 'utf-8'); | ||
const jsonContent = convertToJson(AdoptersContent); | ||
|
||
await writeFile( | ||
resolve(__dirname, '../../config', 'adopters.json'), | ||
JSON.stringify([jsonContent]) | ||
); | ||
} catch (err) { | ||
console.error(err); | ||
throw err; | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of doing
AdoptersList[0]
in component, just refactor this toJSON.stringify(jsonContent)
right?