This is the https://opensaas.sh page and demo app, built with the Open Saas template!
It consists of a Wasp app for showcasing the Open Saas template (+ landing page), while the Astro blog is blog and docs for the Open Saas template, found at https://docs.opensaas.sh.
Inception :)!
Since the demo app is just the open saas template with some small tweaks, and we want to be able to easily keep it up to date as the template changes, we don't version (in git) the actual demo app code, instead we version the diffs between it and the template: app_diff/
.
So because we don't version the actual demo app (app/
) but its diffs instead (app_diff
), the typical workflow is as follows:
- Run
./tools/patch.sh
to generateapp/
from../template/
andapp_diff/
. - If there are any conflicts (normally due to updates to the template), modify
app/
till you resolve them. Do any additional changes also if you wish. - Generate new
app_diff/
, based on the current updatedapp/
, by running./tools/diff.sh
.
Running on MacOS
If you're running the patch.sh
or diff.sh
scripts on Mac, you need to install:
grealpath
(packaged withincoreutils
),gpatch
,- and
diffutils
.
You should also create aliases for realpath
and patch
:
brew install coreutils # contains grealpath
brew install gpatch
brew install diffutils
echo 'alias realpath="grealpath"' >> ~/.zshrc
echo 'alias patch="gpatch"' >> ~/.zshrc
source ~/.zshrc
Make sure not to commit app/
to git. It is currently (until we resolve this) not added to .gitignore because that messes up diffing for us.
Blog (and docs in it) is currently tracked in whole, as it has quite some content, so updating it to the latest version of Open Saas is done manually, but it might be interesting to also move it to the diff
approach, as we use for the demo app, if it turns out to be a good match.
For more info on authoring content for the docs and blog, including information on custom components, see the blog/README.md.
App: check its README.md (after you generate it with .tools/patch.sh
) .
Blog (docs): hosted on Netlify.