Skip to content

Commit 078628f

Browse files
committed
Initial commit
0 parents  commit 078628f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+3773
-0
lines changed

.bowerrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "client/bower_components"
3+
}

.buildignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.coffee

.editorconfig

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
8+
[*]
9+
10+
# Change these settings to your own preference
11+
indent_style = space
12+
indent_size = 2
13+
14+
# We recommend you to keep these unchanged
15+
end_of_line = lf
16+
charset = utf-8
17+
trim_trailing_whitespace = true
18+
insert_final_newline = true
19+
20+
[*.md]
21+
trim_trailing_whitespace = false

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules
2+
public
3+
.tmp
4+
.sass-cache
5+
.idea
6+
client/bower_components
7+
dist
8+
/server/config/local.env.js

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: node_js
2+
node_js:
3+
- '0.10'
4+
- '0.11'
5+
before_script:
6+
- npm install -g bower grunt-cli
7+
- gem install sass
8+
- bower install
9+
services: mongodb

.yo-rc.json

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"generator-angular-fullstack": {
3+
"insertRoutes": true,
4+
"registerRoutesFile": "server/routes.js",
5+
"routesNeedle": "// Insert routes below",
6+
"routesBase": "/api/",
7+
"pluralizeRoutes": true,
8+
"insertSockets": true,
9+
"registerSocketsFile": "server/config/socketio.js",
10+
"socketsNeedle": "// Insert sockets below",
11+
"filters": {
12+
"js": true,
13+
"html": true,
14+
"sass": true,
15+
"uirouter": true,
16+
"bootstrap": true,
17+
"uibootstrap": true,
18+
"mongoose": true,
19+
"auth": true,
20+
"oauth": true,
21+
"googleAuth": true,
22+
"facebookAuth": true
23+
}
24+
},
25+
"generator-ng-component": {
26+
"routeDirectory": "client/app/",
27+
"directiveDirectory": "client/app/",
28+
"filterDirectory": "client/app/",
29+
"serviceDirectory": "client/app/",
30+
"basePath": "client",
31+
"moduleName": "",
32+
"filters": [
33+
"uirouter"
34+
],
35+
"extensions": [
36+
"js",
37+
"html",
38+
"scss"
39+
],
40+
"directiveSimpleTemplates": "",
41+
"directiveComplexTemplates": "",
42+
"filterTemplates": "",
43+
"serviceTemplates": "",
44+
"factoryTemplates": "",
45+
"controllerTemplates": "",
46+
"decoratorTemplates": "",
47+
"providerTemplates": "",
48+
"routeTemplates": ""
49+
}
50+
}

0 commit comments

Comments
 (0)