From e421e8275425cea0a062c7839b5623b56237a1d3 Mon Sep 17 00:00:00 2001 From: Felipe Cruz Date: Mon, 1 Jul 2024 16:17:51 +0200 Subject: [PATCH] Update guided-tour.md (#204) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update guided-tour.md Hey 👋 I'm going through the Guided Tour and I found that when I changed my app name, I also had to migrate the DB again, and my previous data was lost. I added this info to the warning box so other users are aware of the impact. * Update opensaas-sh/blog/src/content/docs/start/guided-tour.md --------- Co-authored-by: Martin Šošić --- opensaas-sh/blog/src/content/docs/start/guided-tour.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opensaas-sh/blog/src/content/docs/start/guided-tour.md b/opensaas-sh/blog/src/content/docs/start/guided-tour.md index 72d013d..3b9cf81 100644 --- a/opensaas-sh/blog/src/content/docs/start/guided-tour.md +++ b/opensaas-sh/blog/src/content/docs/start/guided-tour.md @@ -305,7 +305,7 @@ But before you start setting up the main features, let's walk through the custom title: "Your App Name", ``` :::caution[Restart Your App] - After changing the app name, you'll need to rerun `wasp db start` and `wasp start`! + Upon changing the app name, new, empty development database will be assigned to your app. This means you'll need to rerun `wasp db start`, `wasp db migrate-dev` and `wasp start`. ::: - [ ] Update meta tags in `app.head` (even if you don't have a custom domain yet, put one you would like to have, as this won't affect development). - [ ] Update `app.emailSender.defaultFrom.name` with the name of your app/company/whatever you want your users to see in their inbox, if you're using the `emailSender` feature and/or `email` Auth method.