Start using the Covalent Quickstart
Create a new repo based on the covalent-quickstart
Clone the covalent-quickstart into a new project folder (e.g. my-product)
git clone https://github.com/Teradata/covalent-quickstart.git my-product
cd my-productRemove the git directory to start clean
rm -rf .gitYou could start writing code now and throw it all away when you're done. If you'd rather preserve your work under source control, consider taking the following steps.
Initialize this project as a local git repo and make the first commit:
git init
git add .
git commit -m "Initial commit"Create a remote repository for this project on the service of your choice.
git remote add origin
git push -u origin masterPrerequisites
- Node 6.11.1+
- NPM 3+
- Angular CLI
- Protractor (for testing)
- TSLint (for code style)
If you don't have the Angular CLI, install:
npm i -g @angular/cli@latestInstall Typescript:
npm install -g typescriptTo install Protractor & TSLint for testing:
npm install -g protractor
npm install -g tslintThen update the webdriver manager:
webdriver-manager updateInstall Node packages:
npm iRun the Angular-CLI local server:
ng serve