Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 861 Bytes

File metadata and controls

46 lines (31 loc) · 861 Bytes

Cloud File Uploads

A full-stack application for cloud file uploads with a React frontend and a backend server.

Prerequisites

  • Bun - This project requires Bun runtime. It won't work with Node.js or Deno.

Setup

1. Install Dependencies

You need to install dependencies for both the frontend and backend.

Backend

cd backend
bun install

Frontend

cd frontend
bun install

Running the Project

Both the frontend and backend servers must be started to run the application.

Start the Backend Server

cd backend
bun run index.ts

Start the Frontend Server

cd frontend
bun run dev

The frontend development server will typically run on http://localhost:5173 (Vite default), and you can access the application from your browser.