forked from majodev/google-webfonts-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4b7f335
Showing
57 changed files
with
2,866 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"directory": "client/bower_components" | ||
} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
*.coffee |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
|
||
[*] | ||
|
||
# Change these settings to your own preference | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# We recommend you to keep these unchanged | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
node_modules | ||
public | ||
.tmp | ||
.idea | ||
client/bower_components | ||
dist | ||
/server/config/local.env.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
language: node_js | ||
node_js: | ||
- '0.10' | ||
- '0.11' | ||
before_script: | ||
- npm install -g bower grunt-cli | ||
- bower install | ||
services: mongodb |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"generator-angular-fullstack": { | ||
"insertRoutes": true, | ||
"registerRoutesFile": "server/routes.js", | ||
"routesNeedle": "// Insert routes below", | ||
"routesBase": "/api/", | ||
"pluralizeRoutes": true, | ||
"insertSockets": true, | ||
"registerSocketsFile": "server/config/socketio.js", | ||
"socketsNeedle": "// Insert sockets below", | ||
"filters": { | ||
"js": true, | ||
"html": true, | ||
"less": true, | ||
"uirouter": true, | ||
"bootstrap": true, | ||
"uibootstrap": true | ||
} | ||
}, | ||
"generator-ng-component": { | ||
"routeDirectory": "client/app/", | ||
"directiveDirectory": "client/app/", | ||
"filterDirectory": "client/app/", | ||
"serviceDirectory": "client/app/", | ||
"basePath": "client", | ||
"moduleName": "", | ||
"filters": [ | ||
"uirouter" | ||
], | ||
"extensions": [ | ||
"js", | ||
"html", | ||
"less" | ||
], | ||
"directiveSimpleTemplates": "", | ||
"directiveComplexTemplates": "", | ||
"filterTemplates": "", | ||
"serviceTemplates": "", | ||
"factoryTemplates": "", | ||
"controllerTemplates": "", | ||
"decoratorTemplates": "", | ||
"providerTemplates": "", | ||
"routeTemplates": "" | ||
} | ||
} |
Oops, something went wrong.