-
Notifications
You must be signed in to change notification settings - Fork 68
feat(devex): add project templates, Python SDK demo, quickstart scrip… #359
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
Merged
yash-pouranik
merged 14 commits into
geturbackend:main
from
Nitin-kumar-yadav1307:devex-templates-and-examples
Jul 22, 2026
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
7f96d1b
feat(devex): add project templates, Python SDK demo, quickstart scrip…
Nitin-kumar-yadav1307 2121c79
fix: use array form for providers prop in react-sdk-demo
Nitin-kumar-yadav1307 b7e9055
fix: remove enableEmailPassword prop not in installed @urbackend/reac…
Nitin-kumar-yadav1307 dec4338
fix: use only supported props for @urbackend/react@0.1.1 UrAuth (prov…
Nitin-kumar-yadav1307 2636f76
fix: address security and compatibility findings
Nitin-kumar-yadav1307 6ea0e56
fix: address Node 20 requirement and vercel.json config
Nitin-kumar-yadav1307 6f6872f
fix: address review findings - Node 20, vercel links, clipboard promi…
Nitin-kumar-yadav1307 73d33fd
node.js version fix
Nitin-kumar-yadav1307 9fb75d4
fix: remove stray </write_to_file> artifacts from examples.yml and ve…
Nitin-kumar-yadav1307 d609d77
fix: pin @urbackend/sdk to 0.4.2 and urbackend to 0.1.0 in CI
Nitin-kumar-yadav1307 74d2f40
fix: use sign_up instead of signup in auth demo and tests
Nitin-kumar-yadav1307 046a39c
fix: build local SDK workspaces before example CI builds
Nitin-kumar-yadav1307 b2e8965
fix: use published npm packages instead of local file: references
Nitin-kumar-yadav1307 ad7cf9e
fix: use working-directory instead of --workspace for examples
Nitin-kumar-yadav1307 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 hidden or 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,87 @@ | ||
| name: Examples CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ main ] | ||
| paths: | ||
| - 'examples/**' | ||
| - 'sdks/**' | ||
| - '.github/workflows/examples.yml' | ||
| pull_request: | ||
| branches: [ main ] | ||
| paths: | ||
| - 'examples/**' | ||
| - 'sdks/**' | ||
| - '.github/workflows/examples.yml' | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| react-sdk-demo: | ||
| runs-on: ubuntu-latest | ||
| defaults: | ||
| run: | ||
| working-directory: examples/react-sdk-demo | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| persist-credentials: false | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '20' | ||
| cache: 'npm' | ||
| cache-dependency-path: examples/react-sdk-demo/package-lock.json | ||
| - run: npm install | ||
| - run: npm run build | ||
|
|
||
| sdk-kanban-client: | ||
| runs-on: ubuntu-latest | ||
| defaults: | ||
| run: | ||
| working-directory: examples/sdk-kanban/client | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| persist-credentials: false | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '20' | ||
| cache: 'npm' | ||
| cache-dependency-path: examples/sdk-kanban/client/package-lock.json | ||
| - run: npm install | ||
| - run: npm run build | ||
|
|
||
| social-demo-client: | ||
| runs-on: ubuntu-latest | ||
| defaults: | ||
| run: | ||
| working-directory: examples/social-demo/client | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| persist-credentials: false | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '20' | ||
| cache: 'npm' | ||
| cache-dependency-path: examples/social-demo/client/package-lock.json | ||
| - run: npm install | ||
| - run: npm run build | ||
|
|
||
| python-sdk-demo: | ||
| runs-on: ubuntu-latest | ||
| defaults: | ||
| run: | ||
| working-directory: examples/python-sdk-demo | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| persist-credentials: false | ||
| - uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.11' | ||
| - run: | | ||
| python -m pip install --upgrade pip | ||
| pip install urbackend==0.1.0 python-dotenv==1.2.2 pytest==9.1.1 | ||
| - run: pytest tests/ -v | ||
This file contains hidden or 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 hidden or 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.
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.
Uh oh!
There was an error while loading. Please reload this page.