Skip to content

Commit

Permalink
Move petvet sample application to samples-is
Browse files Browse the repository at this point in the history
  • Loading branch information
ShanChathusanda93 committed Mar 24, 2024
1 parent 5560e19 commit 9a2eebe
Show file tree
Hide file tree
Showing 577 changed files with 75,028 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# +required Version of the endpoint configuration YAML
version: 0.1

# +required List of endpoints to create
endpoints:
# +required Unique name for the endpoint. (This name will be used when generating the managed API)
- name: Channel Service
# +required Numeric port value that gets exposed via this endpoint
port: 9091
# +required Type of the traffic this endpoint is accepting. Example: REST, GraphQL, etc.
# Allowed values: REST, GraphQL, GRPC
type: REST
# +optional Network level visibility of this endpoint. Defaults to Project
# Accepted values: Project|Organization|Public.
networkVisibility: Public
# +optional Context (base path) of the API that is exposed via this endpoint.
# This is mandatory if the endpoint type is set to REST or GraphQL.
context: /
# +optional Path to the schema definition file. Defaults to wild card route if not provided
# This is only applicable to REST endpoint types.
# The path should be relative to the docker context.
schemaFilePath: service_openapi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"image": "ballerina/ballerina-devcontainer:2201.4.0",
"extensions": ["WSO2.ballerina"],
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
org = "WSO2"
name = "channel_service"
version = "1.0.0"
export = ["channel_service"]
distribution = "2201.5.0"

[build-options]
observabilityIncluded = true

[[dependency]]
org = "pubudu538"
name = "choreo.user.info"
version = "0.1.1"
Loading

0 comments on commit 9a2eebe

Please sign in to comment.