Basic Requirements

To run the MakeIT build tasks you will need any Modern browser e.g. Chrome, Firefox etc...

To edit the MakeIT you will need any text editor e.g. Notepad++, Visual Studio Code, Sublime etc...


Overview & File Structure

MakeIT comes with a flexible file structure that can be easily used for small to large scope projects. This section will explain MakeIT's entire file structure and how to adapt it to your project.

Path Description
  • theme

The MakeIT theme folder.

  • assets
Contains images, CSS, JS, Fonts
  • css

Contains All usefull CSS files.

  • animate.css
  • bootstrap.min.css
  • font-awesome.min.css
  • LineIcons.css
  • slick.css
  • style.css
  • custom.css

 

3rd Party Libraries, Don't Edit if not required.

 

 

style.css : Theme default css file

custom.css : Theme custom changes file (You can put your changes here)

  • fonts

Contains All usefull fonts files.

  • FontAwesome.*
  • LineIcons.*

3rd Party Libraries FontAwesome & LineIcons

  • images

Contains All usefull images files.

  • js

Contains All usefull js files.

  • main.js
main.js is a theme default js file, you can customize anything there, other files are 3rd party Libraries

Setup Environment

1. Install Node.jsĀ® and npm if they are not already on your machine.

2. Angular CLI is a command line interface for the latest Angular. Install it before start with the Angular app:

 npm install --global @angular/cli@latest
!
Warning: If you have Angular CLI installed previously, update it to the latest Angular CLI. Remove the older version and re-install it.
 npm uninstall --global @angular/cli
 npm install --global @angular/cli@latest