Interview Voyage is a blog-like application where users can share their interview experiences.
Tech Stack :
Installation
To get started with Interview Voyage, follow these steps:
-
Clone the repository:
git clone https://github.com/r6654kumar/Interview-Voyage.git cd Interview-Voyage
-
Install dependencies: For the backend
cd backend npm install
For the frontend
cd ../frontend npm install
Running the Application
- Set up environment variables:
Create a .env file in the backend directory with the following content:
PORT=5000 MONGODBURL=your_mongodb_connection_string secret=your_jwt_secret
- Start the backend server:
cd backend npm run dev
- Run the frontend
cd frontend npm start
The application will be available at http://localhost:3000.
Contributing
To contribute:
- Fork the repository.
- Create a new branch (git checkout -b feature-branch).
- Commit your changes (git commit -m 'Add some feature').
- Push to the branch (git push origin feature-branch).
- Create a new Pull Request.