forked from jsay-api/b7beet
-
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 6c4dbb7
Showing
138 changed files
with
7,701 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,7 @@ | ||
{ | ||
"presets": ["es2015"], | ||
"plugins": [ | ||
"transform-flow-comments", | ||
"transform-class-properties" | ||
] | ||
} |
Empty file.
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 |
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
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,43 @@ | ||
* text=auto | ||
|
||
# These files are text and should be normalized (Convert crlf => lf) | ||
*.php text | ||
*.css text | ||
*.js text | ||
*.htm text | ||
*.html text | ||
*.xml text | ||
*.txt text | ||
*.ini text | ||
*.inc text | ||
.htaccess text | ||
|
||
# Denote all files that are truly binary and should not be modified. | ||
# (binary is a macro for -text -diff) | ||
*.png binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.gif binary | ||
*.ico binary | ||
*.mov binary | ||
*.mp4 binary | ||
*.mp3 binary | ||
*.flv binary | ||
*.fla binary | ||
*.swf binary | ||
*.gz binary | ||
*.zip binary | ||
*.7z binary | ||
*.ttf binary | ||
|
||
# Documents | ||
*.doc diff=astextplain | ||
*.DOC diff=astextplain | ||
*.docx diff=astextplain | ||
*.DOCX diff=astextplain | ||
*.dot diff=astextplain | ||
*.DOT diff=astextplain | ||
*.pdf diff=astextplain | ||
*.PDF diff=astextplain | ||
*.rtf diff=astextplain | ||
*.RTF diff=astextplain |
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,11 @@ | ||
node_modules | ||
public | ||
.tmp | ||
.sass-cache | ||
.idea | ||
client/bower_components | ||
client/index.html | ||
dist | ||
/server/config/local.env.js | ||
npm-debug.log | ||
coverage |
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,12 @@ | ||
language: node_js | ||
node_js: | ||
- 4.4.6 | ||
matrix: | ||
fast_finish: true | ||
allow_failures: | ||
- node_js: 5.12.0 | ||
before_script: | ||
- npm install -g gulp-cli | ||
- gem install sass | ||
- 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,69 @@ | ||
{ | ||
"generator-angular-fullstack": { | ||
"generatorVersion": "4.0.0-rc.0", | ||
"endpointDirectory": "server/api/", | ||
"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", | ||
"insertModels": true, | ||
"registerModelsFile": "server/sqldb/index.js", | ||
"modelsNeedle": "// Insert models below", | ||
"filters": { | ||
"js": true, | ||
"babel": true, | ||
"flow": true, | ||
"html": true, | ||
"sass": true, | ||
"uirouter": true, | ||
"bootstrap": true, | ||
"uibootstrap": true, | ||
"socketio": true, | ||
"auth": true, | ||
"models": true, | ||
"mongooseModels": true, | ||
"mongoose": true, | ||
"mocha": true, | ||
"jasmine": false, | ||
"should": false, | ||
"expect": true | ||
} | ||
}, | ||
"generator-ng-component": { | ||
"routeDirectory": "client/app/", | ||
"directiveDirectory": "client/app/", | ||
"componentDirectory": "client/app/components/", | ||
"filterDirectory": "client/app/", | ||
"serviceDirectory": "client/app/", | ||
"basePath": "client", | ||
"moduleName": "", | ||
"modulePrompt": true, | ||
"filters": [ | ||
"uirouter", | ||
"mocha", | ||
"expect", | ||
"uirouter", | ||
"es6" | ||
], | ||
"extensions": [ | ||
"babel", | ||
"js", | ||
"html", | ||
"scss" | ||
], | ||
"directiveSimpleTemplates": "", | ||
"directiveComplexTemplates": "", | ||
"filterTemplates": "", | ||
"serviceTemplates": "", | ||
"factoryTemplates": "", | ||
"controllerTemplates": "", | ||
"componentTemplates": "", | ||
"decoratorTemplates": "", | ||
"providerTemplates": "", | ||
"routeTemplates": "" | ||
} | ||
} |
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,28 @@ | ||
# b7beet | ||
|
||
This project was generated with the [Angular Full-Stack Generator](https://github.com/DaftMonk/generator-angular-fullstack) version 4.0.0-rc.0. | ||
|
||
## Getting Started | ||
|
||
### Prerequisites | ||
|
||
- [Git](https://git-scm.com/) | ||
- [Node.js and npm](nodejs.org) Node ^4.4.6, npm ^2.15.5 | ||
- [Gulp](http://gulpjs.com/) (`npm install --global gulp`) | ||
- [MongoDB](https://www.mongodb.org/) - Keep a running daemon with `mongod` | ||
|
||
### Developing | ||
|
||
1. Run `npm install` to install server dependencies. | ||
|
||
2. Run `mongod` in a separate shell to keep an instance of the MongoDB Daemon running | ||
|
||
3. Run `gulp serve` to start the development server. It should automatically open the client in your browser when ready. | ||
|
||
## Build & development | ||
|
||
Run `gulp build` for building and `gulp serve` for preview. | ||
|
||
## Testing | ||
|
||
Running `npm test` will run the unit tests with karma. |
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 @@ | ||
{ | ||
"extends": "../.eslintrc", | ||
"env": { | ||
"browser": true, | ||
"commonjs": true | ||
} | ||
} |
Oops, something went wrong.