Skip to content

MEAN Stack working example: Environment Application Estimator web application, built on MEAN.JS Project (https://github.com/meanjs/mean)

Notifications You must be signed in to change notification settings

gitter-badger/meanestimator

 
 

Repository files navigation

TravisCI   David Dependencies   David Dev Dependencies   Codeship

MEAN Estimator

This project is built using MEAN.JS - Full-Stack JavaScript Using MongoDB, Express, AngularJS, and Node.js. From Creators of MEAN.IO (http://www.meanjs.org). Sample MEAN application for estimating the cost and resources required to add application platforms and infrastructure in development and test software environments. Collect and report on time and cost estimates from multiple resource groups.

View Estimates
List all estimates. Click on an estimate in the list to view the estimate details.
RESTful endpoint (GET): http://localhost:3111/estimates

View Estimate Details
Click on an estimate in the list of estimates to view the estimate details.
RESTful enpoint (GET): http://localhost:3111/estimates/<estimate_id>

New Estimate
Add a new estimate.
RESTful endpoint (POST): http://localhost:3111/estimates

Update an Estimate
Update an existing estimate. Access from the list of estimates.
RESTful endpoint (PUT): http://localhost:3111/estimates/<estimate_id>

Delete an Estimate
Update an existing estimate. Access from the list of estimates.
RESTful endpoint (DELETE): http://localhost:3111/estimates/54716703da107e3500c083a5

View Reports Coming Soon
View estimate summary reports coming soon. Service working.
RESTful endpoint:
http://localhost:3111/reporting/resources http://localhost:3111/reporting/infrastructure

###Code Details

Optional environment variables (defaults if not set, below)

echo 'export NODE_PORT=3111' >> ~/.bashrc
echo 'export NODE_ENV=development' >> ~/.bashrc
echo 'export ENV_FORM_DATA=../../app/data/formData.json' >> ~/.bashrc
. ~/.bashrc

Run locally

npm install
bower install
grunt
node server # alternate method

Build and run with fig and Docker

docker pull dockerfile/nodejs
docker pull mongo
fig build
fig up
fig ps # check your containers

###Preview Main Page - Desktop

Signup Page - Mobile

Main Page - Mobile

Estimate Detail Page - Mobile

Estimate Edit Page - Mobile

About

MEAN Stack working example: Environment Application Estimator web application, built on MEAN.JS Project (https://github.com/meanjs/mean)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.4%
  • Other 0.6%