This is a simple Calendly clone built with Express and TypeScript.
Make sure you have Node.js and npm installed.
-
Clone or Download the repository
git clone https://github.com/tgoyal63/calendly-backend.git -
Navigate to the folder
cd calendly-backend -
Install dependencies
npm install -
Start the server
npm start
Your app should now be running on localhost:3000.
-
Build the Docker image
docker build -t calendly-backend . -
Run the Docker container
docker run -p 3000:3000 calendly-backend