Skip to content

Commit 8b4b344

Browse files
committed
initial commit
0 parents  commit 8b4b344

Some content is hidden

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

78 files changed

+3558
-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+
.idea
5+
client/bower_components
6+
dist
7+
/server/config/local.env.js
8+
npm-debug.log

.travis.yml

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

.yo-rc.json

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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+
"babel": false,
13+
"js": true,
14+
"html": true,
15+
"css": true,
16+
"ngroute": true,
17+
"bootstrap": true,
18+
"uibootstrap": true,
19+
"mongoose": true,
20+
"auth": true
21+
}
22+
},
23+
"generator-ng-component": {
24+
"routeDirectory": "client/app/",
25+
"directiveDirectory": "client/app/",
26+
"filterDirectory": "client/app/",
27+
"serviceDirectory": "client/app/",
28+
"basePath": "client",
29+
"moduleName": "",
30+
"filters": [
31+
"ngroute"
32+
],
33+
"extensions": [
34+
"js",
35+
"html",
36+
"css"
37+
],
38+
"directiveSimpleTemplates": "",
39+
"directiveComplexTemplates": "",
40+
"filterTemplates": "",
41+
"serviceTemplates": "",
42+
"factoryTemplates": "",
43+
"controllerTemplates": "",
44+
"decoratorTemplates": "",
45+
"providerTemplates": "",
46+
"routeTemplates": ""
47+
}
48+
}

0 commit comments

Comments
 (0)