Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 1.22 KB

README.md

File metadata and controls

31 lines (28 loc) · 1.22 KB

Hospital Appointment Booker

A website wherein the users can search for a hospital, and book an appointment for a doctor working there.

Getting started with the project

  • Fork the repository on GitHub.
  • Navigate to the folder of the repository.
  • To run this project, you should have node.js and npm installed on your system. If you don't have node.js and npm, you can visit The official site of node.js to install them on your system.
  • Install NPM dependencies.
    npm install
    
  • Create the .env file and copy the contents of .env.example into it by typing the following command:
    For Linux or Mac (or Windows PowerShell):
    cp .env.example .env
    
    For Windows(cmd):
    copy .env.example .env
    
  • Run the development server to view the changes you are making by typing the following command:
    npm start
    
  • To perform all the backend and database related actions, you will also need to setup the backend server. Follow the steps given in the readme of the backend repository to set it up.
  • Once you have both the repositories set up, you can start booking your appointments.