-
Notifications
You must be signed in to change notification settings - Fork 119
Cloning Canvasboard frontend
Prerequisites checklist:
- Git
Before cloning the project locally make sure git is installed in your local system. See more on how to install git. See here
- NodeJS and NPM
Make sure NodeJS is installed (LTS preferred) provided in the official web page. See here
To verify NodeJS is installed, type the following command to check the node version
node -v
To verify NPM version is installed, type the following command to check the npm version
npm -v
- Angular CLI
Make sure angular CLI is installed globally. See here
Type the following command to install Angular CLI
npm install -g @angular/cli
Type the following command to check the Angular ng version
ng –version
Step 1: Clone the repository at your desired workplace directory
git pull https://github.com/Canvasbird/canvasboard.git
Step 2: Change the directory to canvasboard
cd canvasboard
Step 3: Install all the required modules and dependencies. ( Make sure you are in the root directory )
npm install
Step 4: Once node modules are installed, Serve the application locally with polling value 2000
ng serve -o --poll=2000
Yayy!🌼 Your application is served locally in localhost:4200🚀