Skip to content

Latest commit

 

History

History
executable file
·
40 lines (33 loc) · 742 Bytes

File metadata and controls

executable file
·
40 lines (33 loc) · 742 Bytes

imtheo.lol

My personal portfolio website.

Tech Stack

Frontend

  • React
  • Vite
  • React Router

Backend

  • Express.js
  • TypeScript

Installation

  1. Clone the repository
  2. Copy the environment variables file:
cp .env.example .env
  1. Fill in your environment variables in the .env file
  2. Install dependencies
pnpm install

Development

Start the development server with:

pnpm dev

This will start both the frontend (on Vite's dev server) and backend (on Express) concurrently. The frontend will be available at http://localhost:5173 and the backend API at http://localhost:8782 (configurable in .env).

Production

Build the frontend and start the server:

pnpm start