Skip to content

Commit

Permalink
Merge branch 'main' into issue-templates
Browse files Browse the repository at this point in the history
  • Loading branch information
choir241 authored Aug 27, 2024
2 parents f72eadc + 005cf97 commit 80b6bab
Show file tree
Hide file tree
Showing 18 changed files with 928 additions and 78 deletions.
19 changes: 19 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## What does this PR do?

(Description of what the PR does.)

## Test Plan

(What did you do to test the code, if there was any changed?)

## Related PRs and Issues

(Link all related PRs and issues here, including any issues this PR resolves or is related to.)

## Relevant Screenshots

(Place any screenshots of your changes here, if/when relevant.)

### Have you read the [Contributing Guidelines on issues](https://github.com/pieces-app/documentation/blob/main/CONTRIBUTING.md)?

(Write your answer here.)
12 changes: 12 additions & 0 deletions docs/build/examples/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@ import CTAButton from "/src/components/CTAButton";
import {GithubIcon} from "/src/components/Icons";
import {MiniSpacer} from "/src/components/Spacers";

Explore projects that use the Pieces SDK in various frameworks.

:::info

These projects are community-contributed and may not be maintained by the Pieces team.

These projects may not using our latest [SDKs](/build/sdks/python). We recommend using the built-in wrapper SDKs for an improved developer experience.

:::

## Examples

<Grid cols={2}>
<div className={'grid-card'}>
<div style={{
Expand Down
51 changes: 2 additions & 49 deletions docs/build/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,58 +58,11 @@ We're always working on improving and extending the current stack of available S
<p>Python SDK for Pieces OS</p>
<CTAButton
label={'Get Started'}
href={'/build/reference/python'}
type={'secondary'}
/>
</div>
<div className={'grid-card'}>
<div style={{
display: 'flex',
alignItems: 'center',
gap: '10px'
}}>
<img
src={'/assets/languages/dart_logo.png'}
alt={'Dart Logo'}
width={40}
/>
<span style={{
fontSize: '1.5rem',
fontWeight: 'bold'
}}>Dart SDK</span>
</div>
<MiniSpacer/>
<p>Dart SDK for Pieces OS</p>
<CTAButton
label={'Get Started'}
href={'/build/reference/dart'}
type={'secondary'}
/>
</div>
<div className={'grid-card'}>
<div style={{
display: 'flex',
alignItems: 'center',
gap: '10px'
}}>
<img
src={'/assets/languages/kotlin_logo.png'}
alt={'Kotlin Logo'}
width={40}
/>
<span style={{
fontSize: '1.5rem',
fontWeight: 'bold'
}}>Kotlin SDK</span>
</div>
<MiniSpacer/>
<p>Kotlin SDK for Pieces OS</p>
<CTAButton
label={'Get Started'}
href={'reference/kotlin'}
href={'/build/sdks/python'}
type={'secondary'}
/>
</div>

</Grid>

<MiniSpacer />
Expand Down
2 changes: 1 addition & 1 deletion docs/build/reference/typescript/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ if (platform === 'linux') {
}

// The `basePath` defaults to http://localhost:1000, however we need to change it to the correct port based on the operating system.
const configuration = Pieces.Configuration({
const configuration = new Pieces.Configuration({
basePath: `http://localhost:${port}`
})
// Create an instance of the WellKnownApi class
Expand Down
Loading

0 comments on commit 80b6bab

Please sign in to comment.