Prerequisite You should have installed Node.js (version 20.0.0 or higher).

Step 1. Clone the Launch Express repository:

Access to the Extended Repository only available under the Extended Plan

Step 2. Navigate to the project directory:

Step 3. Remove the origin remote:

git remote remove origin

Step 4. Install the dependencies:

npm install

Step 5. Create a .env file:

cp .env.example .env

Step 6. You are ready to start the development server:

npm run dev

Now you can preview your changes at http://localhost:3000.

Configuration file

To make sure everything is set up correctly, please check the Configuration page for more information. Its necessary to set up most of the configurations before starting the server.

Environment Variables

Change the environment variables in the .env file with your own values. To generate an own AUTH_SECRET, you can use the following command:

npx auth secret

Alternatively, you can use the following command to generate a random string:

openssl rand -base64 33