Project Guidance
Step-by-step instructions for setting up and running the Cox's Bazar Tourism project
Navigation
Choose a section to view guidance
Prerequisites & Project Setup
Before you begin, ensure you have the following installed on your system:
- Node.js (v18.0.0 or higher)
- npm (v9.0.0 or higher) or yarn (v1.22.0 or higher)
- Git
- PowerShell (v5.1 or higher)
Checking Prerequisites
Verify that you have the required tools installed with these commands:
node --version
Checks the installed Node.js version. Should be v18.0.0 or higher.
npm --version
Checks the installed npm version. Should be v9.0.0 or higher.
git --version
Checks the installed Git version.
$PSVersionTable.PSVersion
Checks the PowerShell version. Should be v5.1 or higher.
Cloning the Project
Clone the project repository to your local machine:
git clone https://github.com/your-organization/coxs-bazar-tourism.git
Clones the project repository to your local machine.
cd coxs-bazar-tourism
Navigates to the project directory.
Installing Dependencies
Install the project dependencies using npm or yarn:
npm install
Installs all project dependencies using npm.
yarn install
Alternative: Installs all project dependencies using yarn.