-
Notifications
You must be signed in to change notification settings - Fork 1
How to install necessary software
-
Node Js and npm
-
Download for Windows
-
Nodejs can be installed following these steps
-
Go to the browser https://nodejs.org/en/download/
-
For windows, run the Nodej.js.msi and follow the steps needed to install
-
To verify the installation run node -v in your terminal once the installation is done
-
To update the version of npm run npm install npm --global
-
-
-
Install npm
- npm is installed and is distributed with Node.js- which means that when you download Node.js, you automatically get npm installed on your computer.
-
-
Download for Mac
-
Before you can install Node, you’ll need to have two other applications, Xcode and Homebrew. once you’ve got these on your machine, installing Node takes just a few minutes
-
XCode
-
Is a development software is used to build Mac and iOS apps, but it also includes the tools you need to compile software for use on your Mac. XCode is free and you can find it in the Apple App Store.
-
-
Homebrew
-
a package manager for the Mac that makes installing most open source sofware (like Node) as simple as writing brew install node
-
To install Homebrew just open Terminal and type ruby
- -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"You’ll see messages in the Terminal explaining what you need to do to complete the installation process.
-
-
-
-
-
Install My SQL
-
For Windows
-
Use the following link https://www.mysql.com/downloads/
-
The most important ones that are necessary are MySQL servers and workbench, but it wouldn’t hurt to get the full product
-
-
For Mac
-
Use the following link
-
Download MySQL for OS X
-
Unpack downloaded .dmg file
-
Install MySQL from downloaded file
-
Install and setup auto start package for MySQL on OS X
-
Connect to installed MySQL server
-
-
-
-
Install Git
-
Once you get git installed, set up, ready and running for the project, you need to clone the project from git.
-
Using a terminal you need to run the following command git
$ git clone https://github.com/Dsafanyuk/Fetchr.git
from there you can learn how to start the api or learn how to to start the frontend
-