GitXplorerGitXplorer
n

mongo-express-ember-node

public
3 stars
2 forks
0 issues

Commits

List of commits on branch master.
Unverified
b4abae458b8c176730ac04598f989801a4b07b72

Update README.md

nnem035 committed 8 years ago
Unverified
f9913c5a55ca95363363b7d022677ad9fd41aa34

Update README.md

nnem035 committed 8 years ago
Unverified
9bf7ea8fb18eb8bb8950b1decf5a4204936a55c8

Initial commit

nnem035 committed 8 years ago

README

The README file for this repository.

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 git@github.com: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