-
Notifications
You must be signed in to change notification settings - Fork 116
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 -vTo 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/cliType the following command to check the Angular ng version
ng –versionStep 1: Clone the repository at your desired workplace directory
git pull https://github.com/Canvasbird/canvasboard.gitStep 2: Change the directory to canvasboard
cd canvasboardStep 3: Install all the required modules and dependencies. ( Make sure you are in the root directory )
npm installStep 4: Once node modules are installed, Serve the application locally with polling value 2000
ng serve -o --poll=2000Yayy!🌼 Your application is served locally in localhost:4200🚀