Atomic UI Blank Project
January 26, 2018 ยท View on GitHub
A quick starter app for atomic-ui.
Getting Started
1. Clone the repo
git clone https://github.com/dbartumeu/atomic-ui-blank.git my-project
2. Remove the git directory to start clean
cd my-product
rm -rf .git
3. Initialize your project as a local git repo:
git init
git add .
git commit -m "Initial commit"
4. Create a remote repository for this project (optional).
git remote add origin
git push -u origin master
5. Start Developing.
5.1 Install Node packages:
npm install
5.2 Start the server:
ng serve