forked from wasp-lang/open-saas
-
Notifications
You must be signed in to change notification settings - Fork 0
Merge from upstream #7
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
Merged
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
be00608
Account page commit
FranjoMindek e7e0a1c
return other button
FranjoMindek 838573e
changes
FranjoMindek 354274f
fix find credits
FranjoMindek 2a0cd5f
Merge branch 'main' into franjo/account-page-improvements
FranjoMindek 53c3be8
format
FranjoMindek 545a43c
generate on build + gitignore
FranjoMindek 0bd7bd3
remove generate step
FranjoMindek cd86e5c
Merge pull request #515 from wasp-lang/franjo/refactor-llms-txt-handling
FranjoMindek 39a0226
Add GitHub Action for automatic template release on tag creation (#511)
Copilot 3f8d012
Ran lossless optimization on assets for template (#518)
cprecioso fa15f85
Use SVG versions of the banner (#521)
cprecioso 1d04d53
Remove note about ignoring app (#520)
cprecioso 0ebee55
Add note about template requirements (#528)
cprecioso a5df55a
Add `*.copy` support to `dope.sh` (#525)
cprecioso 2713f9e
Remove Satoshi from template, keep it in opensaas.sh (#526)
cprecioso 41f70e9
remove dt dd
FranjoMindek 537c295
revert credits
FranjoMindek a41fb47
Merge pull request #506 from wasp-lang/franjo/account-page-improvements
FranjoMindek 57ae0bf
Move `dope.sh` to top level (#531)
infomiho 7d36c8f
Refactor file upload and toast notifications (#472)
vincanger bc57bb7
Update Product Hunt badges in README
vincanger 02d0c90
Update README.md
vincanger f0429af
Fix dope.sh handling of empty lines in deletions file (#536)
infomiho a55adf7
for now
FranjoMindek 5cae99d
Merge pull request #537 from wasp-lang/franjo/fix-e2e-tests
FranjoMindek 026ac73
Test all PRs
cprecioso 93e3e9d
Improve Stripe payment provider logic (#550)
FranjoMindek 4ca8a99
Update OpenSaas for Wasp main
cprecioso f0b4d61
Update diffs
cprecioso adb8bb6
Move shadcn directories to client shared folder + update shadcn docs …
FranjoMindek bb76056
Change Stripe files variable naming and streamline some logic (#570)
FranjoMindek 7d1436e
Update Wasp version in CI
cprecioso effb104
Add blog post on Gemini 3 and Open SaaS
vincanger b1c78d4
Update 2025-11-19-gemini-3-open-saas.mdx
vincanger a11790b
Add images to Gemini 3 Open SaaS blog post
vincanger 9e87f77
Update testing version
cprecioso cf6afad
Abstract Stripe payment logic into reusable functions (#569)
FranjoMindek 7f2c074
Polar integration (#461)
Genyus 2a858ba
Standardize diffs in `dope.sh` (#557)
FranjoMindek 88c71f2
Add roadmap feature to landing page + small fixes (#574)
vincanger ad45427
Use `dope.sh` to generate a testable app from production template (#530)
infomiho 4fd82f2
Update to Wasp 0.20.0 (#589)
cprecioso ffdccbf
Use 0.20.0 in CI
infomiho 55a2df3
Use Wasp `main` (#588)
cprecioso 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
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,28 @@ | ||
| name: Check `opensaas-sh` diffs are up to date | ||
|
|
||
| on: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - main | ||
|
|
||
| jobs: | ||
| check-diffs: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v6 | ||
|
|
||
| - name: Generate diffs | ||
| run: | | ||
| ./opensaas-sh/tools/patch.sh | ||
| ./opensaas-sh/tools/diff.sh | ||
|
|
||
| - name: Check for uncommitted changes | ||
| run: | | ||
| if [[ -n $(git status --porcelain) ]]; then | ||
| echo "Error: There are uncommitted diff changes" | ||
| echo "Please run './opensaas-sh/tools/patch.sh' and './opensaas-sh/tools/diff.sh' locally and commit the changes" | ||
| git status | ||
| exit 1 | ||
| fi | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| --- | ||
| name: Template Release | ||
|
|
||
| "on": | ||
| push: | ||
| tags: | ||
| - "wasp-v*-template" | ||
|
|
||
| workflow_dispatch: | ||
| inputs: | ||
| tag: | ||
| description: "Tag to release (e.g., wasp-v0.18-template)" | ||
| required: true | ||
|
|
||
| permissions: | ||
| contents: write | ||
|
|
||
| jobs: | ||
| release: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| env: | ||
| tag_name: ${{ inputs.tag || github.ref_name }} | ||
| archive_name: template.tar.gz | ||
|
|
||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v5 | ||
| with: | ||
| ref: ${{ env.tag_name}} | ||
|
|
||
| - name: Create template archive | ||
| # The Wasp CLI expects the template contents to be in the root of the archive. | ||
| working-directory: template | ||
| run: tar -czf "../$archive_name" . | ||
|
|
||
| - name: Create release if it doesn't exist | ||
| run: | | ||
| if ! gh release view "$tag_name"; then | ||
| gh release create "$tag_name" | ||
| fi | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
| - name: Upload release asset | ||
| run: gh release upload "$tag_name" "$archive_name" --clobber | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Non-existent GitHub Actions checkout versions will break workflows
The new workflow files reference
actions/checkout@v6andactions/checkout@v5, but the latest stable version is v4. These non-existent versions will cause the workflows to fail immediately upon execution. Other workflows in the repository correctly useactions/checkout@v3oractions/checkout@v4.Additional Locations (1)
.github/workflows/template-release.yml#L27-L28