Skip to content

bilalelhaj/google-calendar-fullstack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.