This project is a full-stack application that allows users to create and share movie lists.
- Frontend: React.js, Tailwind CSS
- Backend: Express.js
- Database: MongoDB
- Node.js and npm (or yarn) installed on your system (Node.js download)
- A code editor of your choice (e.g., Visual Studio Code, Sublime Text, Atom)
git clone https://github.com/your-username/your-repo-name.git
Replace https://github.com/your-username/your-repo-name.git with the actual URL of your repository.
cd your-repo-name
npm install
Start the development server:
npm start
Create a .env file in the root directory of your backend code.
MONGODB_URI=your_mongodb_connection_string
Replace your_mongodb_connection_string with your actual MongoDB connection string. You can obtain this from your MongoDB provider.
node server.js
This will start your Express.js backend server, which will typically run on port 3001 (or a different port if configured).