This project was made with Angular 8, it's a ecommerce frontend, the application is connected with spring-restapi-ecommerce through API. However, you can create your own API and use this repository as a boilerplate to build your own application.
- Angular 8
- TypeScript
- Bootstrap
- HTML/CSS
- Rest API
To clone and run this application by yourself, make sure you have NodeJS, Git and a terminal (doesn't matter which), just to run the commands. After that, do the following instructions:
First of all, make sure you have downloaded the backend and have ran the server. The instruction of how to do that is on it's readme.
# Clone this repository
$ git clone https://github.com/reness0/angular-ecommerce
# Go into the repository
$ cd angular-ecommerce
$ npm i
$ ng serve -o
Now, all you need to do, is access on your browser: http://localhost:4200
- Make a fork;
- Create a branch with your feature:
git checkout -b my-feature
; - Commit changes:
git commit -m 'Updating the css'
; - Push the changes:
git push origin my-feature
.