This repository has been archived by the owner on Aug 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing Compass, Fixing Windows Errors, Removing Makefile, Tiding Code
- Loading branch information
Showing
12 changed files
with
117 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,9 +7,6 @@ MEAN is a boilerplate that provides a nice starting point for [MongoDB](http://w | |
* MongoDB - Download and Install [MongoDB](http://www.mongodb.org/downloads) - Make sure it's running on the default port (27017). | ||
|
||
### Optional | ||
* Ruby - Download and Install [Ruby](http://www.ruby-lang.org/). | ||
* Ruby Gems - Download and Install [Ruby Gems](http://rubygems.org). | ||
* Compass - an open-source CSS Authoring Framework, install via [Ruby Gems](http://rubygems.org). | ||
* Grunt - Download and Install [Grunt](http://gruntjs.com). | ||
|
||
## Additional Packages | ||
|
@@ -93,9 +90,9 @@ If you are using node instead of grunt, it is very similar: | |
|
||
## More Information | ||
|
||
* Visit our [Ninja's Zone](http://www.meanleanstartupmachine.com/) for extended support. | ||
* Contact Amos Haviv on any issue via [E-Mail](mailto:[email protected]), [Facebook](http://www.facebook.com/amoshaviv), or [Twitter](http://www.twitter.com/amoshaviv). | ||
* Visit us at [Linnovate.net](http://www.linnovate.net/). | ||
* Contact amos on any issue via [E-Mail](mailto:[email protected]), [Facebook](http://www.facebook.com/amoshaviv), or [Twitter](http://www.twitter.com/amoshaviv). | ||
* Visit our [Ninja's Zone](http://www.meanleanstartupmachine.com/) for extended support. | ||
|
||
## Credits | ||
Inspired by the great work of [Madhusudhan Srinivasa](https://github.com/madhums/) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,24 @@ | ||
{ | ||
"name": "angularJS-IL", | ||
"version": "1.0.0", | ||
"dependencies": { | ||
"bootstrap": "2.3.2", | ||
"angular": "~1.0.6", | ||
"angular-resource": "~1.0.6", | ||
"angular-cookies": "~1.0.6", | ||
"angular-bootstrap": "~0.4.0", | ||
"angular-ui-utils": "0.0.4", | ||
"json3": "~3.2.4", | ||
"jquery": "~1.9.1" | ||
}, | ||
"devDependencies": { | ||
"angular-mocks": "~1.0.5", | ||
"angular-scenario": "~1.0.5" | ||
} | ||
} | ||
"name": "mean", | ||
"version": "1.0.0", | ||
"dependencies": { | ||
"bootstrap": "2.3.2", | ||
"angular": "~1.0.6", | ||
"angular-resource": "~1.0.6", | ||
"angular-cookies": "~1.0.6", | ||
"angular-bootstrap": "~0.4.0", | ||
"angular-ui-utils": "0.0.4", | ||
"json3": "~3.2.4", | ||
"jquery": "~1.9.1" | ||
}, | ||
"exportsOverride": { | ||
"bootstrap": { | ||
"css": "docs/assets/css/bootstrap*.css", | ||
"js": "docs/assets/js/bootstrap.js", | ||
"img": "docs/assets/img/glyphicons-halflings*.png" | ||
}, | ||
"angular-ui-utils": { | ||
"modules": "modules/route/route.js" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,25 @@ | ||
.navbar .nav>li>a.brand{padding-left:20px;margin-left:0}.content{margin-top:50px;width:100%}footer{position:fixed;left:0px;bottom:0px;height:30px;width:100%;background:#ddd;-webkit-box-shadow:0 8px 6px 6px black;-moz-box-shadow:0 8px 6px 6px black;box-shadow:0 8px 6px 6px black}footer p{padding:5px 0 12px 10px} | ||
.navbar .nav>li>a.brand { | ||
padding-left:20px; | ||
margin-left:0 | ||
} | ||
|
||
.content { | ||
margin-top:50px; | ||
width:100% | ||
} | ||
|
||
footer { | ||
position:fixed; | ||
left:0px; | ||
bottom:0px; | ||
height:30px; | ||
width:100%; | ||
background:#ddd; | ||
-webkit-box-shadow:0 8px 6px 6px black; | ||
-moz-box-shadow:0 8px 6px 6px black; | ||
box-shadow:0 8px 6px 6px black | ||
} | ||
|
||
footer p { | ||
padding:5px 0 12px 10px | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
h1{text-align:center}ul.articles li:not(:last-child){border-bottom:1px solid #ccc} | ||
h1 { | ||
text-align:center | ||
} | ||
|
||
ul.articles li:not(:last-child) { | ||
border-bottom:1px solid #ccc | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.