diff --git a/appdir/.bowerrc b/.bowerrc similarity index 100% rename from appdir/.bowerrc rename to .bowerrc diff --git a/appdir/.gitignore b/.gitignore similarity index 100% rename from appdir/.gitignore rename to .gitignore diff --git a/README.md b/README.md old mode 100644 new mode 100755 index 9837fd8..b14f183 --- a/README.md +++ b/README.md @@ -1 +1,20 @@ -# PiazzHackApp +# MEAN Stack Single Page Application Starter + +This is a repo for a starter appliation for a Single Page MEAN Stack application. Just download and install and you have a good foundation for building application. + +## Installation +1. Download the repository +2. Install npm modules: `npm install` +3. Install bower dependencies `bower install` +4. Start up the server: `node server.js` +5. View in browser at http://localhost:8080 + +Use this starter kit to build any MEAN stack application you like. + +If you have any questions or requests, email us at [chris@scotch.io](mailto:chris@scotch.io) and we'll keep updating this to make it perfect. + +## Future Additions +- CRUD examples +- Development and Production Environments +- Link examples +- Single Page AngularJS Animations diff --git a/appdir/app/models/Nerd.js b/app/models/Nerd.js similarity index 100% rename from appdir/app/models/Nerd.js rename to app/models/Nerd.js diff --git a/appdir/app/routes.js b/app/routes.js similarity index 100% rename from appdir/app/routes.js rename to app/routes.js diff --git a/appdir/README.md b/appdir/README.md deleted file mode 100755 index b14f183..0000000 --- a/appdir/README.md +++ /dev/null @@ -1,20 +0,0 @@ -# MEAN Stack Single Page Application Starter - -This is a repo for a starter appliation for a Single Page MEAN Stack application. Just download and install and you have a good foundation for building application. - -## Installation -1. Download the repository -2. Install npm modules: `npm install` -3. Install bower dependencies `bower install` -4. Start up the server: `node server.js` -5. View in browser at http://localhost:8080 - -Use this starter kit to build any MEAN stack application you like. - -If you have any questions or requests, email us at [chris@scotch.io](mailto:chris@scotch.io) and we'll keep updating this to make it perfect. - -## Future Additions -- CRUD examples -- Development and Production Environments -- Link examples -- Single Page AngularJS Animations diff --git a/appdir/package.json b/appdir/package.json deleted file mode 100755 index 9fdb424..0000000 --- a/appdir/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "starter-node-angular", - "main": "server.js", - "dependencies": { - "express" : "~4.5.1", - "mongoose" : "~3.8.0", - "body-parser" : "~1.4.2", - "method-override" : "~2.0.2" - } -} - diff --git a/appdir/bower.json b/bower.json similarity index 100% rename from appdir/bower.json rename to bower.json diff --git a/appdir/config/db.js b/config/db.js similarity index 100% rename from appdir/config/db.js rename to config/db.js diff --git a/appdir/public/css/style.css b/public/css/style.css similarity index 100% rename from appdir/public/css/style.css rename to public/css/style.css diff --git a/appdir/public/index.html b/public/index.html similarity index 100% rename from appdir/public/index.html rename to public/index.html diff --git a/appdir/public/js/app.js b/public/js/app.js similarity index 100% rename from appdir/public/js/app.js rename to public/js/app.js diff --git a/appdir/public/js/appDirectives.js b/public/js/appDirectives.js similarity index 100% rename from appdir/public/js/appDirectives.js rename to public/js/appDirectives.js diff --git a/appdir/public/js/appRoutes.js b/public/js/appRoutes.js similarity index 100% rename from appdir/public/js/appRoutes.js rename to public/js/appRoutes.js diff --git a/appdir/public/js/controllers/GeekCtrl.js b/public/js/controllers/GeekCtrl.js similarity index 100% rename from appdir/public/js/controllers/GeekCtrl.js rename to public/js/controllers/GeekCtrl.js diff --git a/appdir/public/js/controllers/MainCtrl.js b/public/js/controllers/MainCtrl.js similarity index 100% rename from appdir/public/js/controllers/MainCtrl.js rename to public/js/controllers/MainCtrl.js diff --git a/appdir/public/js/controllers/NerdCtrl.js b/public/js/controllers/NerdCtrl.js similarity index 100% rename from appdir/public/js/controllers/NerdCtrl.js rename to public/js/controllers/NerdCtrl.js diff --git a/appdir/public/js/services/GeekService.js b/public/js/services/GeekService.js similarity index 100% rename from appdir/public/js/services/GeekService.js rename to public/js/services/GeekService.js diff --git a/appdir/public/js/services/NerdService.js b/public/js/services/NerdService.js similarity index 100% rename from appdir/public/js/services/NerdService.js rename to public/js/services/NerdService.js diff --git a/appdir/public/views/geek.html b/public/views/geek.html similarity index 100% rename from appdir/public/views/geek.html rename to public/views/geek.html diff --git a/appdir/public/views/home.html b/public/views/home.html similarity index 100% rename from appdir/public/views/home.html rename to public/views/home.html diff --git a/appdir/public/views/nerd.html b/public/views/nerd.html similarity index 100% rename from appdir/public/views/nerd.html rename to public/views/nerd.html diff --git a/appdir/server.js b/server.js similarity index 100% rename from appdir/server.js rename to server.js