Skip to content

Latest commit

 

History

History
53 lines (43 loc) · 1.39 KB

README.md

File metadata and controls

53 lines (43 loc) · 1.39 KB

Full stack app sample using the MEEN stack (Mongo, Express, Ember, Node)

This is basic implementation of a full stack web app using Mongo, Ember and Express.

The Mongo-backed Express server is in ./server and the Ember app is in ./client

Server Dependencies:

Getting Started

Clone the repo and make it your own:

git clone [email protected]:nem035/mongo-express-ember-node.git
cd mongo-express-ember-node
rm -rf .git && git init && npm init

Create a _config folder at the top level of ./server with development.json inside, holding your config. The json should look like:

{
  "HOST"   : "http://localhost",
  "PORT"   : 3000,
  "NAME"   : "{app name}",
  "DB_URI" : "{mongo db url}"
} 

Install npm dependencies

cd server && npm install
cd ..
cd client && npm install

Run it:

cd server && npm start
cd ..
cd client && ember s

Navigate to http://localhost:4200/user to see examples.

License

MIT