/abstract

Primary LanguageJavaScript

Abstract Internshala

Project Setup

Prerequisites

  • Ensure you have created a MongoDB Atlas URL before starting.

Installation Steps

  1. Clone the repository:
https://github.com/VikasMeshram2708/abstract.git
  1. Set up the backend:
  • cd abstract/backend
  • npm install
  • npm run dev
  1. Set up the frontend:
  • cd ../frontend
  • npm install
  • npm run dev
  1. Configure environment variables:
  • cp .env.sample .env

Note: Insert your MongoDB Atlas URI in the .env file.

Backend API EndPoints

  • To Create a Card [http://localhost:8080/card/create]
  • To Read all Cards [http://localhost:8080/card/read]
  • To Read Single Card [http://localhost:8080/card/read/<title>]

Important Notes

  • Ensure all dependencies are installed in both backend and frontend directories.
  • Run both backend and frontend development servers simultaneously.
  • Verify your MongoDB Atlas URI is correctly entered in the .env file.