From 85351f864bfc9654754b4544cbf48de45f808627 Mon Sep 17 00:00:00 2001 From: Isaac Date: Tue, 1 Oct 2024 12:31:21 -0700 Subject: [PATCH] add a note about what the views are in Saas --- docs-site/content/docs/getting-started/tour/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-site/content/docs/getting-started/tour/index.md b/docs-site/content/docs/getting-started/tour/index.md index b677a26f2..203f3205d 100644 --- a/docs-site/content/docs/getting-started/tour/index.md +++ b/docs-site/content/docs/getting-started/tour/index.md @@ -54,7 +54,7 @@ If not, feel free to skip this side-note and continue on to the next part. * For the built-in starter templates, the options are: * `lightweight-service` which is aimed to be minimal and only has controllers and views. Choosing this option will not include the selection options for database, background workers, or asset serving. * `Rest API` which has the DB connection and user auth, but does not include views (no asset serving option later on). - * `SaaS app` which comes with the DB connection and user auth, as well as views and templating. + * `SaaS app` which comes with the DB connection and user auth, as well as views and templating. It uses Tera for server-side rendering in `assets/views/` and React for client-side in `frontend/`. * For DB providers you can choose `Sqlite` or `Postgres`, both options are supported in `loco`. This option and the following options are not available when you choose the `lightweight-service` template.