Skip to content

Latest commit

 

History

History
60 lines (42 loc) · 1.08 KB

README.md

File metadata and controls

60 lines (42 loc) · 1.08 KB

Google-Calendar

Table of Contents

Setting Up Environment Variables

To set up the environment variables for your project, follow these steps:

  1. Copy the .env.example file and rename the copy to .env.
cp .env.example .env

Backend

To start the backend locally, follow these steps:

  1. Navigate to the backend directory of the project.
cd backend
  1. Install the necessary dependencies using npm.
npm install
  1. Start the server.
npm run dev

The backend server should now be running locally.

Frontend

To start the frontend locally, follow these steps:

  1. Navigate to the frontend directory of the project.
cd frontend
  1. Install the necessary dependencies using npm.
npm install
  1. Start the React application.
npm start

The frontend application should now be running locally.

Please note that you need to have Node.js and npm installed on your machine to run these commands.