Skip to content

Commit

Permalink
Merge pull request #105 from connery-io/beta
Browse files Browse the repository at this point in the history
Pivot the project from the Connery Runner to the Connery SDK
  • Loading branch information
machulav committed Apr 5, 2024
2 parents 159cafc + 2e648f8 commit ed661ae
Show file tree
Hide file tree
Showing 196 changed files with 16,338 additions and 18,701 deletions.
8 changes: 0 additions & 8 deletions .changeset/README.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/config.json

This file was deleted.

19 changes: 0 additions & 19 deletions .devcontainer/create-dot-env.sh

This file was deleted.

45 changes: 0 additions & 45 deletions .devcontainer/devcontainer.json

This file was deleted.

10 changes: 0 additions & 10 deletions .devcontainer/post-start-commands.sh

This file was deleted.

23 changes: 0 additions & 23 deletions .env.example

This file was deleted.

79 changes: 79 additions & 0 deletions .github/workflows/release-sdk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: Release SDK

on:
push:
branches:
- main
- beta

jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: "20"

- run: yarn install
working-directory: ./packages/connery

- run: yarn run format:check
working-directory: ./packages/connery

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: "20"

- run: yarn install
working-directory: ./packages/connery

- run: yarn run lint
working-directory: ./packages/connery

test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: "20"

- run: yarn install
working-directory: ./packages/connery

- run: yarn run test
working-directory: ./packages/connery

release:
name: Release
runs-on: ubuntu-latest
needs: [format, lint, test]
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: "20"

- run: yarn install
working-directory: ./packages/connery

- run: yarn run build
working-directory: ./packages/connery

- run: npx semantic-release
working-directory: ./packages/connery
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
10 changes: 0 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,5 @@ out
# local env files
.env

# turbo
.turbo

# vscode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# misc
.DS_Store
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

17 changes: 0 additions & 17 deletions .vscode/launch.json

This file was deleted.

10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ to contact@connery.io.

## I have a question

> If you want to ask a question, we assume that you have read the available [Documentation](https://docs.connery.io).
> If you want to ask a question, we assume that you have read the available [Documentation](https://sdk.connery.io).
Before you ask a question, it is best to search for existing [Discussions](https://github.com/connery-io/connery/discussions) that might help you. In case you have found a suitable discussion and still need clarification, you can write your question in this discussion. It is also advisable to search the internet for answers first.

Expand All @@ -57,7 +57,7 @@ We will then take care of the discussion as soon as possible.
A good bug report shouldn't leave others needing to chase you up for more information. Therefore, we ask you to investigate carefully, collect information and describe the issue in detail in your report. Please complete the following steps in advance to help us fix any potential bug as fast as possible.

- Make sure that you are using the latest version.
- Determine if your bug is really a bug and not an error on your side e.g. using incompatible environment components/versions (Make sure that you have read the [documentation](https://docs.connery.io). If you are looking for support, you might want to check [this section](#i-have-a-question)).
- Determine if your bug is really a bug and not an error on your side e.g. using incompatible environment components/versions (Make sure that you have read the [documentation](https://sdk.connery.io). If you are looking for support, you might want to check [this section](#i-have-a-question)).
- To see if other users have experienced (and potentially already solved) the same issue you are having, check if there is not already a bug report existing for your bug or error in the [bug tracker](https://github.com/connery-io/connery/issues?q=label%3Abug).
- Also make sure to search the internet (including Stack Overflow) to see if users outside of the GitHub community have discussed the issue.
- Collect information about the bug:
Expand Down Expand Up @@ -91,7 +91,7 @@ This section guides you through submitting an enhancement suggestion for Connery
#### Before submitting an enhancement

- Make sure that you are using the latest version.
- Read the [documentation](https://docs.connery.io) carefully and find out if the functionality is already covered, maybe by an individual configuration.
- Read the [documentation](https://sdk.connery.io) carefully and find out if the functionality is already covered, maybe by an individual configuration.
- Perform a [search](https://github.com/connery-io/connery/issues) to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one.
- Find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the project's developers of the merits of this feature. Keep in mind that we want features that will be useful to the majority of our users and not just a small subset. If you're just targeting a minority of users, consider writing an add-on/plugin library.

Expand Down Expand Up @@ -119,11 +119,11 @@ Enhancement suggestions are tracked as [GitHub issues](https://github.com/conner

### Adding plugin to the list of plugins

If you have a plugin you would like to add to the [list of plugins](https://docs.connery.io/docs/plugins/), please open a pull request to update the [./apps/docs/docs/plugins/index.mdx](https://github.com/connery-io/connery/blob/main/apps/docs/docs/plugins/index.mdx) file in this repository.
If you have a plugin you would like to add to the [list of plugins](https://sdk.connery.io/docs/plugins/), please open a pull request to update the [./apps/docs/docs/plugins/index.mdx](https://github.com/connery-io/connery/blob/main/apps/docs/docs/plugins/index.mdx) file in this repository.

### Adding client to the list of clients

If you have a client you would like to add to the [list of clients](https://docs.connery.io/docs/clients/), please open a pull request to add a new page to the [./apps/docs/docs/clients/](https://github.com/connery-io/connery/blob/main/apps/docs/docs/clients/) folder in this repository.
If you have a client you would like to add to the [list of clients](https://sdk.connery.io/docs/clients/), please open a pull request to add a new page to the [./apps/docs/docs/clients/](https://github.com/connery-io/connery/blob/main/apps/docs/docs/clients/) folder in this repository.

## Attribution

Expand Down
Loading

0 comments on commit ed661ae

Please sign in to comment.