forked from Bradford-Loesch/mean_setup
-
Notifications
You must be signed in to change notification settings - Fork 0
BeFreeB/mean_setup
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This bash script will build a full MEAN project complete with Angular factory and controller. ProjectName ├── client │ ├── index.html │ ├── partials │ │ └── main.html │ ├── scripts │ │ ├── app.js │ │ ├── controller.js │ │ └── factory.js │ └── styles │ └── styles.css | ├── node_modules (angular, angular-route, body-parser, express, mongoose) | ├── package.json | ├── server │ ├── config │ │ ├── mongoose.js │ │ └── routes.js │ ├── controllers │ │ └── tests.js │ └── models │ └── test.js └── server.js Under the hood: The script handles the npm installs of the required packages. The script will open your default browser to localhost:8000, showing the index page. Please note: You must run 'mongod' independant of this script!!! To run this script: Copy the script into a sibling directory of where you want the project created. Run with ./makemean The 'test' directory in this repo is a sample of what the script builds.
About
A full mean project builder.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- JavaScript 73.1%
- HTML 26.7%
- CSS 0.2%