Skip to content

Commit 9f80291

Browse files
author
rabbitEm
committed
feasy2.0
0 parents  commit 9f80291

File tree

419 files changed

+50210
-0
lines changed

Some content is hidden

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

419 files changed

+50210
-0
lines changed

.bowerrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "bower_components"
3+
}

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
indent_style = space
8+
indent_size = 2
9+
end_of_line = lf
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
insert_final_newline = false
15+
trim_trailing_whitespace = false

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/node_modules/
2+
/dist/
3+
/npm-debug.log
4+
.vscode
5+
.idea
6+
/bower_components
7+
src/app
8+
refresh.sh

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License
2+
3+
Copyright (c) 2015-2016 Google, Inc.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## feasy angular app based on angular2-seed
2+
3+
### Usage
4+
- Clone this repository
5+
- Make sure you have [node.js](https://nodejs.org/) installed version 5+
6+
- Make sure you have NPM installed version 3+
7+
- `WINDOWS ONLY` run `npm install -g webpack webpack-dev-server typescript` to install global dependencies
8+
- run `npm install` and `bower install` to install dependencies
9+
- run `npm start` to fire up dev server
10+
- open browser to [`http://localhost:3000`](http://localhost:3000)

bower.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"name": "feasy",
3+
"version": "0.0.0",
4+
"dependencies": {
5+
"jquery": "~2.1.1",
6+
"angular-resource": "~1.3.4",
7+
"angular-route": "~1.3.4",
8+
"bootstrap-sass-official": "~3.3.1",
9+
"angular-strap": "2.3.1",
10+
"angular": "~1.3.4",
11+
"angular-ui-router": "~0.2.13",
12+
"angular-animate": "~1.3.13",
13+
"angular-messages": "~1.3.13",
14+
"angular-timeago": "~0.2.0",
15+
"angular-sanitize": "~1.3.15",
16+
"font-awesome": "~4.3.0",
17+
"malihu-custom-scrollbar-plugin": "~3.0.8",
18+
"ngtoast": "~1.5.2",
19+
"angular-motion": "~0.3.4",
20+
"angular-file-upload": "~1.1.5",
21+
"angular-perfect-scrollbar": "~0.0.4",
22+
"underscore": "~1.8.3",
23+
"angular-underscore-module": "~1.0.1"
24+
},
25+
"devDependencies": {
26+
"angular-mocks": "~1.3.4"
27+
},
28+
"resolutions": {
29+
"jquery": "~2.1.1",
30+
"angular": "~1.3.4"
31+
},
32+
"overrides": {
33+
"font-awesome": {
34+
"main": [
35+
"./fonts/*"
36+
]
37+
}
38+
}
39+
}

karma.conf.js

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
// Karma configuration
2+
// Generated on Sun Aug 06 2017 10:22:02 GMT+0300 (EEST)
3+
4+
module.exports = function(config) {
5+
config.set({
6+
7+
// base path that will be used to resolve all patterns (eg. files, exclude)
8+
basePath: '',
9+
10+
11+
// frameworks to use
12+
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
13+
frameworks: ['jasmine'],
14+
15+
16+
// list of files / patterns to load in the browser
17+
files: [
18+
// shims
19+
{pattern: 'node_modules/reflect-metadata/Reflect.js', included: true, watched: true},
20+
{pattern: 'node_modules/zone.js/dist/zone.js', included: true, watched: true},
21+
{pattern: 'node_modules/zone.js/dist/async-test.js', included: true, watched: true},
22+
{pattern: 'node_modules/rxjs/**/*.js', included: false, watched: false},
23+
{pattern: 'node_modules/@angular/**/*.js', included: false, watched: false},
24+
25+
{ pattern: 'test/main.js', watched: false }
26+
],
27+
28+
29+
// list of files to exclude
30+
exclude: [
31+
],
32+
33+
shim: {
34+
'reflect-metadata': {
35+
exports: 'reflect-metadata'
36+
}
37+
},
38+
39+
40+
// preprocess matching files before serving them to the browser
41+
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
42+
preprocessors: {
43+
'test/main.js': ['webpack', 'sourcemap']
44+
},
45+
46+
webpack: require('./webpack.config'), //({env: 'test'}),
47+
48+
49+
// test results reporter to use
50+
// possible values: 'dots', 'progress'
51+
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
52+
reporters: ['progress'],
53+
54+
55+
// web server port
56+
port: 9876,
57+
58+
59+
// enable / disable colors in the output (reporters and logs)
60+
colors: true,
61+
62+
63+
// level of logging
64+
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
65+
logLevel: config.LOG_INFO,
66+
67+
68+
// enable / disable watching file and executing tests whenever any file changes
69+
autoWatch: true,
70+
71+
72+
// start these browsers
73+
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
74+
browsers: [
75+
'Firefox'
76+
],
77+
78+
79+
// Continuous Integration mode
80+
// if true, Karma captures browsers, runs the tests and exits
81+
singleRun: false,
82+
83+
// Concurrency level
84+
// how many browser should be started simultaneous
85+
concurrency: Infinity
86+
})
87+
}

npm-debug.log.3165306462

Whitespace-only changes.

0 commit comments

Comments
 (0)