One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| domain Payment { | |
| version 1.0.0 | |
| summary "Payment processing domain" | |
| service PaymentService { | |
| version 1.0.0 | |
| summary "Handles payment transactions" | |
| sends event PaymentProcessed { | |
| version 1.0.0 |
| service Name { | |
| version 1.0.0 | |
| summary "Hello world" | |
| } | |
| event Name { | |
| version 1.0.0 | |
| summary "description" | |
| } |
| # EventCatalog Contributor License Agreement (CLA) | |
| ## 1. Definitions | |
| - **"You" or "Contributor"**: Any individual or legal entity submitting a contribution to the EventCatalog project. | |
| - **"Contribution"**: Any work submitted to the project, including code, documentation, or other material. Contributions are identified through pull requests, issue submissions, code commits, documentation edits, and other forms of project participation. | |
| - **"Project"**: The open-source EventCatalog project maintained by the project maintainers. | |
| ## 2. Grant of Copyright License |
| # Add annotations in grafana | |
| curl -X POST \ | |
| https://{YOUR_URL}/api/annotations \ | |
| -H "authorization: Bearer $GRAFANA_API_TOKEN" \ | |
| -H 'content-type: application/json' \ | |
| -d "{ | |
| \"text\": \"Hello world!\", | |
| \"tags\": [ \"deployment\", \"env:dev}\", \"application:my-application\", \"commit: commit-sha-example}\"] | |
| }" |
| { | |
| "extends": "lighthouse:full", | |
| "settings": { | |
| "budgets": [ | |
| { | |
| "resourceSizes": [ | |
| { | |
| "resourceType": "script", | |
| "budget": 50 | |
| }, |
| import React, { Component } from "react"; | |
| import logo from "./logo.svg"; | |
| import Sentry from "./Sentry"; | |
| import ErrorExample from "./ErrorExample"; | |
| import "./App.css"; | |
| class App extends Component { | |
| render() { | |
| return ( | |
| <Sentry url="http://9ad974bebc5545e3aa3dd259f449ac7f@localhost:9000/2"> |
| # Lines starting with '#' are comments. | |
| # Each line is a file pattern followed by one or more owners. | |
| # These owners will be the default owners for everything in the repo. | |
| * @defunkt | |
| # Order is important. The last matching pattern has the most precedence. | |
| # So if a pull request only touches javascript files, only these owners | |
| # will be requested to review. | |
| *.js @octocat @github/js |
Before submitting a pull request, please make sure the following is done:
master.npm run test and npm run lint.