Skip to content

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

License

Notifications You must be signed in to change notification settings

nem035/mongo-express-ember-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages