A full-stack application for cloud file uploads with a React frontend and a backend server.
- Bun - This project requires Bun runtime. It won't work with Node.js or Deno.
- Install Bun from bun.sh
You need to install dependencies for both the frontend and backend.
cd backend
bun installcd frontend
bun installBoth the frontend and backend servers must be started to run the application.
cd backend
bun run index.tscd frontend
bun run devThe frontend development server will typically run on http://localhost:5173 (Vite default), and you can access the application from your browser.