Skip to content

Latest commit

 

History

History
56 lines (41 loc) · 746 Bytes

File metadata and controls

56 lines (41 loc) · 746 Bytes

ByteByteBox

ByteByteBox is a Dropbox clone built with the MERN stack (MongoDB, Express, React, Node.js). It allows users to upload, share, and manage files.

Installation

Clone the repository:

git clone https://github.com/your-username/bytebytebox.git
  1. Navigate to the project directory:
cd bytebytebox
  1. Go to backend directory
cd backend
  1. run
npm install
  1. create .env file and add following variable
MONGODB_URI=your-mongo-uri/db-name
SESSION_SECRET=your-session-secret-key
JWT_SECRET=secret
  1. run
node index.js
  1. Go to frontend directory
cd .../bytebytebox-frontend
  1. run
npm install
  1. run
npm start