Update README.md

This commit is contained in:
Ichitux
2026-03-13 15:31:46 +01:00
committed by GitHub
parent 61407a3051
commit 6fdfec1e9e

View File

@@ -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: Follow these steps:
```sh ```sh
@@ -61,13 +39,20 @@ This project is built with:
- Tailwind CSS - Tailwind CSS
## How can I deploy this project? ## How can I deploy this project?
```sh
# Step 1: Clone the repository using the project's Git URL.
git clone <YOUR_GIT_URL>
Simply open [Lovable](https://lovable.dev/projects/REPLACE_WITH_PROJECT_ID) and click on Share -> Publish. # Step 2: Navigate to the project directory.
cd <YOUR_PROJECT_NAME>
## 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
```