From 6fdfec1e9e9c4e2074091ec2a80e3cc00bc8c20c Mon Sep 17 00:00:00 2001 From: Ichitux Date: Fri, 13 Mar 2026 15:31:46 +0100 Subject: [PATCH] Update README.md --- README.md | 39 ++++++++++++--------------------------- 1 file changed, 12 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 70b7c82..6b0fcbc 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,3 @@ -# Welcome to your Lovable project - -## Project info - -**URL**: https://lovable.dev/projects/REPLACE_WITH_PROJECT_ID - -## How can I edit this code? - -There are several ways of editing your application. - -**Use Lovable** - -Simply visit the [Lovable Project](https://lovable.dev/projects/REPLACE_WITH_PROJECT_ID) and start prompting. - -Changes made via Lovable will be committed automatically to this repo. - -**Use your preferred IDE** - -If you want to work locally using your own IDE, you can clone this repo and push changes. Pushed changes will also be reflected in Lovable. - -The only requirement is having Node.js & npm installed - [install with nvm](https://github.com/nvm-sh/nvm#installing-and-updating) - Follow these steps: ```sh @@ -61,13 +39,20 @@ This project is built with: - Tailwind CSS ## How can I deploy this project? +```sh +# Step 1: Clone the repository using the project's Git URL. +git clone -Simply open [Lovable](https://lovable.dev/projects/REPLACE_WITH_PROJECT_ID) and click on Share -> Publish. +# Step 2: Navigate to the project directory. +cd -## Can I connect a custom domain to my Lovable project? +# Step 3: Install the necessary dependencies. +npm i -Yes, you can! +# Step 4: Start the development server with auto-reloading and an instant preview. +npm run build -To connect a domain, navigate to Project > Settings > Domains and click Connect Domain. +npm install -g serve -Read more here: [Setting up a custom domain](https://docs.lovable.dev/features/custom-domain#custom-domain) +serve -s dist +```