Prerequisite

You will definately be needing these


NodeJs

NodeJs allows javascript to be run outside of a browser and is used to power several tools during development. If you already have NodeJs installed then please make sure you are using the latest version using the following command. npm update -g update To install NodeJs on your system please head over to their site NodeJs.org

Github

Git is one of the most popular version control systems used to collaboratively develop software. Both our cli tool and bower use Git to download fremix and its dependencies into projects.

To download and install Git onto your system please head over to their site Github Downloads



Global Install Install Once, Use Forever


1. Update NodeJs

npm update -g update

2. Install Global Dependencies

npm install -g gulp bower bower-installer

3. Install fremix-cli

npm install -g fremix-cli

Since the cli-tool is not completed yet we do not recommend global installation


Local Install Install Once, Use Once


1. Clone

git clone https://github.com/Relution-Developments/fremix.git

2. Move

cd ./fremix

3. NodeDeps

npm install

4. BowerDeps

bower-installer

5. Build, Serve & Watch

gulp watch

Custom Install Custom Integration


Coming Soon