Skip to content

Latest commit

 

History

History
71 lines (43 loc) · 1.08 KB

README.md

File metadata and controls

71 lines (43 loc) · 1.08 KB

OneApp

An all in one application to view social media feeds.

Getting Started

The following instructions will get you a copy of the project running on your local machine.

Prerequisites

Our application runs off the MEAN Stack so the following dependencies are required.

Node.js

You can download Node.js from their website

or through homebrew

brew install node

MongoDB

Download MongoDB from their website

or through homebrew

brew install mongodb

AngularJS

Download angular-cli through npm with

npm install -g @angular/cli

Building the app

Once you have the source files, run

npm install

to compile the code in both root directory and angular-src folder.

Running the app

Start MongoDB with

mongod

where you downloaded your mongo bin.

Navigate into the 'angular-src' folder and run

ng build

to compile your code into a public folder. You can then serve your application to localhost:8000 with

npm start