Skip to content
Daniela Escobar edited this page Aug 1, 2025 · 6 revisions

🚀 Linkfy quick start

Note

Each workspace (client/ and server/) has its own .env file. You must create it by copying from its respective .env.example file:

# Frontend
cd client
cp .env.example .env

# Backend
cd server
cp .env.example .env

Install dependencies

From the root of the project, install all dependencies:

yarn install

Start the frontend 🎨

With everything installed, run:

yarn dev:client

Start the backend 🖥️

With everything installed, run:

yarn dev:server