Edit the heroku welcome to your new app

The classic Heroku welcome message!

To edit the Heroku welcome message for your new app, you can follow these steps:

Method 1: Using the Heroku CLI

  1. Open your terminal and navigate to the directory where your app is located.
  2. Run the command heroku config:set WELCOME_MESSAGE="Your new welcome message here" (replace "Your new welcome message here" with your desired message).
  3. Verify that the message has been updated by running heroku config:get WELCOME_MESSAGE.

Method 2: Using the Heroku Dashboard

  1. Log in to your Heroku account and navigate to your app's dashboard.
  2. Click on the "Settings" tab.
  3. Scroll down to the "Config Vars" section.
  4. Click on the "Edit" button next to "WELCOME_MESSAGE".
  5. Enter your new welcome message and click "Save".

Method 3: Using a Heroku Config File

  1. Create a new file named config.json in the root of your app directory.
  2. Add the following code to the file:
    {
    "WELCOME_MESSAGE": "Your new welcome message here"
    }
  3. Commit the changes to your Git repository.
  4. Run the command heroku config:push to push the config file to Heroku.

Once you've updated the welcome message, it will be displayed when users visit your app's URL.

Note: The welcome message is limited to 255 characters, so keep your message concise and within the character limit.