TG-104
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
904de9a202
12
backend/app/fusion_pdf.py
Normal file
12
backend/app/fusion_pdf.py
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import os
|
||||||
|
import PyPDF2
|
||||||
|
from PyPDF2 import PdfFileReader, PdfFileMerger
|
||||||
|
|
||||||
|
files_dir = "C:\\olatest\\app\\pdf"
|
||||||
|
pdf_files = [f for f in os.listdir(files_dir) if f.endswith("pdf")]
|
||||||
|
merger = PdfFileMerger()
|
||||||
|
|
||||||
|
for filename in pdf_files:
|
||||||
|
merger.append(PdfFileReader(os.path.join(files_dir, filename), "rb"))
|
||||||
|
|
||||||
|
merger.write(os.path.join(files_dir, "merged_full.pdf"))
|
3
frontend/.bowerrc
Normal file
3
frontend/.bowerrc
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"directory": "bower_components"
|
||||||
|
}
|
21
frontend/.editorconfig
Normal file
21
frontend/.editorconfig
Normal file
@ -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
|
1
frontend/.gitattributes
vendored
Normal file
1
frontend/.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
* text=auto
|
5
frontend/.gitignore
vendored
Normal file
5
frontend/.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
/node_modules
|
||||||
|
/dist
|
||||||
|
/.tmp
|
||||||
|
/.sass-cache
|
||||||
|
/bower_components
|
6
frontend/.jscsrc
Normal file
6
frontend/.jscsrc
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"requireCamelCaseOrUpperCaseIdentifiers": true,
|
||||||
|
"requireCapitalizedConstructors": true,
|
||||||
|
"requireParenthesesAroundIIFE": true,
|
||||||
|
"validateQuoteMarks": "'"
|
||||||
|
}
|
16
frontend/.jshintrc
Normal file
16
frontend/.jshintrc
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"bitwise": true,
|
||||||
|
"browser": true,
|
||||||
|
"curly": true,
|
||||||
|
"eqeqeq": true,
|
||||||
|
"esnext": true,
|
||||||
|
"latedef": true,
|
||||||
|
"noarg": true,
|
||||||
|
"node": true,
|
||||||
|
"strict": true,
|
||||||
|
"undef": true,
|
||||||
|
"unused": true,
|
||||||
|
"globals": {
|
||||||
|
"angular": false
|
||||||
|
}
|
||||||
|
}
|
11
frontend/.yo-rc.json
Normal file
11
frontend/.yo-rc.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"generator-karma": {
|
||||||
|
"base-path": "../",
|
||||||
|
"frameworks": "jasmine",
|
||||||
|
"browsers": "PhantomJS",
|
||||||
|
"app-files": "app/scripts/**/*.js",
|
||||||
|
"files-comments": "bower:js,endbower",
|
||||||
|
"bower-components-path": "bower_components",
|
||||||
|
"test-files": "test/mock/**/*.js,test/spec/**/*.js"
|
||||||
|
}
|
||||||
|
}
|
483
frontend/Gruntfile.js
Normal file
483
frontend/Gruntfile.js
Normal file
@ -0,0 +1,483 @@
|
|||||||
|
// Generated on 2017-01-20 using generator-angular 0.15.1
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
// # Globbing
|
||||||
|
// for performance reasons we're only matching one level down:
|
||||||
|
// 'test/spec/{,*/}*.js'
|
||||||
|
// use this if you want to recursively match all subfolders:
|
||||||
|
// 'test/spec/**/*.js'
|
||||||
|
|
||||||
|
module.exports = function (grunt) {
|
||||||
|
|
||||||
|
// Time how long tasks take. Can help when optimizing build times
|
||||||
|
require('time-grunt')(grunt);
|
||||||
|
|
||||||
|
// Automatically load required Grunt tasks
|
||||||
|
require('jit-grunt')(grunt, {
|
||||||
|
useminPrepare: 'grunt-usemin',
|
||||||
|
ngtemplates: 'grunt-angular-templates',
|
||||||
|
cdnify: 'grunt-google-cdn'
|
||||||
|
});
|
||||||
|
|
||||||
|
// Configurable paths for the application
|
||||||
|
var appConfig = {
|
||||||
|
app: require('./bower.json').appPath || 'app',
|
||||||
|
dist: 'dist'
|
||||||
|
};
|
||||||
|
|
||||||
|
// Define the configuration for all the tasks
|
||||||
|
grunt.initConfig({
|
||||||
|
|
||||||
|
// Project settings
|
||||||
|
yeoman: appConfig,
|
||||||
|
|
||||||
|
// Watches files for changes and runs tasks based on the changed files
|
||||||
|
watch: {
|
||||||
|
bower: {
|
||||||
|
files: ['bower.json'],
|
||||||
|
tasks: ['wiredep']
|
||||||
|
},
|
||||||
|
js: {
|
||||||
|
files: ['<%= yeoman.app %>/scripts/{,*/}*.js'],
|
||||||
|
tasks: ['newer:jshint:all', 'newer:jscs:all'],
|
||||||
|
options: {
|
||||||
|
livereload: '<%= connect.options.livereload %>'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
jsTest: {
|
||||||
|
files: ['test/spec/{,*/}*.js'],
|
||||||
|
tasks: ['newer:jshint:test', 'newer:jscs:test', 'karma']
|
||||||
|
},
|
||||||
|
styles: {
|
||||||
|
files: ['<%= yeoman.app %>/styles/{,*/}*.css'],
|
||||||
|
tasks: ['newer:copy:styles', 'postcss']
|
||||||
|
},
|
||||||
|
gruntfile: {
|
||||||
|
files: ['Gruntfile.js']
|
||||||
|
},
|
||||||
|
livereload: {
|
||||||
|
options: {
|
||||||
|
livereload: '<%= connect.options.livereload %>'
|
||||||
|
},
|
||||||
|
files: [
|
||||||
|
'<%= yeoman.app %>/{,*/}*.html',
|
||||||
|
'.tmp/styles/{,*/}*.css',
|
||||||
|
'<%= yeoman.app %>/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// The actual grunt server settings
|
||||||
|
connect: {
|
||||||
|
options: {
|
||||||
|
port: 9000,
|
||||||
|
// Change this to '0.0.0.0' to access the server from outside.
|
||||||
|
hostname: 'localhost',
|
||||||
|
livereload: 35729
|
||||||
|
},
|
||||||
|
livereload: {
|
||||||
|
options: {
|
||||||
|
open: true,
|
||||||
|
middleware: function (connect) {
|
||||||
|
return [
|
||||||
|
connect.static('.tmp'),
|
||||||
|
connect().use(
|
||||||
|
'/bower_components',
|
||||||
|
connect.static('./bower_components')
|
||||||
|
),
|
||||||
|
connect().use(
|
||||||
|
'/app/styles',
|
||||||
|
connect.static('./app/styles')
|
||||||
|
),
|
||||||
|
connect.static(appConfig.app)
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
test: {
|
||||||
|
options: {
|
||||||
|
port: 9001,
|
||||||
|
middleware: function (connect) {
|
||||||
|
return [
|
||||||
|
connect.static('.tmp'),
|
||||||
|
connect.static('test'),
|
||||||
|
connect().use(
|
||||||
|
'/bower_components',
|
||||||
|
connect.static('./bower_components')
|
||||||
|
),
|
||||||
|
connect.static(appConfig.app)
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
dist: {
|
||||||
|
options: {
|
||||||
|
open: true,
|
||||||
|
base: '<%= yeoman.dist %>'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Make sure there are no obvious mistakes
|
||||||
|
jshint: {
|
||||||
|
options: {
|
||||||
|
jshintrc: '.jshintrc',
|
||||||
|
reporter: require('jshint-stylish')
|
||||||
|
},
|
||||||
|
all: {
|
||||||
|
src: [
|
||||||
|
'Gruntfile.js',
|
||||||
|
'<%= yeoman.app %>/scripts/{,*/}*.js'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
test: {
|
||||||
|
options: {
|
||||||
|
jshintrc: 'test/.jshintrc'
|
||||||
|
},
|
||||||
|
src: ['test/spec/{,*/}*.js']
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Make sure code styles are up to par
|
||||||
|
jscs: {
|
||||||
|
options: {
|
||||||
|
config: '.jscsrc',
|
||||||
|
verbose: true
|
||||||
|
},
|
||||||
|
all: {
|
||||||
|
src: [
|
||||||
|
'Gruntfile.js',
|
||||||
|
'<%= yeoman.app %>/scripts/{,*/}*.js'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
test: {
|
||||||
|
src: ['test/spec/{,*/}*.js']
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Empties folders to start fresh
|
||||||
|
clean: {
|
||||||
|
dist: {
|
||||||
|
files: [{
|
||||||
|
dot: true,
|
||||||
|
src: [
|
||||||
|
'.tmp',
|
||||||
|
'<%= yeoman.dist %>/{,*/}*',
|
||||||
|
'!<%= yeoman.dist %>/.git{,*/}*'
|
||||||
|
]
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
server: '.tmp'
|
||||||
|
},
|
||||||
|
|
||||||
|
// Add vendor prefixed styles
|
||||||
|
postcss: {
|
||||||
|
options: {
|
||||||
|
processors: [
|
||||||
|
require('autoprefixer-core')({browsers: ['last 1 version']})
|
||||||
|
]
|
||||||
|
},
|
||||||
|
server: {
|
||||||
|
options: {
|
||||||
|
map: true
|
||||||
|
},
|
||||||
|
files: [{
|
||||||
|
expand: true,
|
||||||
|
cwd: '.tmp/styles/',
|
||||||
|
src: '{,*/}*.css',
|
||||||
|
dest: '.tmp/styles/'
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
dist: {
|
||||||
|
files: [{
|
||||||
|
expand: true,
|
||||||
|
cwd: '.tmp/styles/',
|
||||||
|
src: '{,*/}*.css',
|
||||||
|
dest: '.tmp/styles/'
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Automatically inject Bower components into the app
|
||||||
|
wiredep: {
|
||||||
|
app: {
|
||||||
|
src: ['<%= yeoman.app %>/index.html'],
|
||||||
|
ignorePath: /\.\.\//
|
||||||
|
},
|
||||||
|
test: {
|
||||||
|
devDependencies: true,
|
||||||
|
src: '<%= karma.unit.configFile %>',
|
||||||
|
ignorePath: /\.\.\//,
|
||||||
|
fileTypes:{
|
||||||
|
js: {
|
||||||
|
block: /(([\s\t]*)\/{2}\s*?bower:\s*?(\S*))(\n|\r|.)*?(\/{2}\s*endbower)/gi,
|
||||||
|
detect: {
|
||||||
|
js: /'(.*\.js)'/gi
|
||||||
|
},
|
||||||
|
replace: {
|
||||||
|
js: '\'{{filePath}}\','
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Renames files for browser caching purposes
|
||||||
|
filerev: {
|
||||||
|
dist: {
|
||||||
|
src: [
|
||||||
|
'<%= yeoman.dist %>/scripts/{,*/}*.js',
|
||||||
|
'<%= yeoman.dist %>/styles/{,*/}*.css',
|
||||||
|
'<%= yeoman.dist %>/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}',
|
||||||
|
'<%= yeoman.dist %>/styles/fonts/*'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Reads HTML for usemin blocks to enable smart builds that automatically
|
||||||
|
// concat, minify and revision files. Creates configurations in memory so
|
||||||
|
// additional tasks can operate on them
|
||||||
|
useminPrepare: {
|
||||||
|
html: '<%= yeoman.app %>/index.html',
|
||||||
|
options: {
|
||||||
|
dest: '<%= yeoman.dist %>',
|
||||||
|
flow: {
|
||||||
|
html: {
|
||||||
|
steps: {
|
||||||
|
js: ['concat', 'uglifyjs'],
|
||||||
|
css: ['cssmin']
|
||||||
|
},
|
||||||
|
post: {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Performs rewrites based on filerev and the useminPrepare configuration
|
||||||
|
usemin: {
|
||||||
|
html: ['<%= yeoman.dist %>/{,*/}*.html'],
|
||||||
|
css: ['<%= yeoman.dist %>/styles/{,*/}*.css'],
|
||||||
|
js: ['<%= yeoman.dist %>/scripts/{,*/}*.js'],
|
||||||
|
options: {
|
||||||
|
assetsDirs: [
|
||||||
|
'<%= yeoman.dist %>',
|
||||||
|
'<%= yeoman.dist %>/images',
|
||||||
|
'<%= yeoman.dist %>/styles'
|
||||||
|
],
|
||||||
|
patterns: {
|
||||||
|
js: [[/(images\/[^''""]*\.(png|jpg|jpeg|gif|webp|svg))/g, 'Replacing references to images']]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// The following *-min tasks will produce minified files in the dist folder
|
||||||
|
// By default, your `index.html`'s <!-- Usemin block --> will take care of
|
||||||
|
// minification. These next options are pre-configured if you do not wish
|
||||||
|
// to use the Usemin blocks.
|
||||||
|
// cssmin: {
|
||||||
|
// dist: {
|
||||||
|
// files: {
|
||||||
|
// '<%= yeoman.dist %>/styles/main.css': [
|
||||||
|
// '.tmp/styles/{,*/}*.css'
|
||||||
|
// ]
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// },
|
||||||
|
// uglify: {
|
||||||
|
// dist: {
|
||||||
|
// files: {
|
||||||
|
// '<%= yeoman.dist %>/scripts/scripts.js': [
|
||||||
|
// '<%= yeoman.dist %>/scripts/scripts.js'
|
||||||
|
// ]
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// },
|
||||||
|
// concat: {
|
||||||
|
// dist: {}
|
||||||
|
// },
|
||||||
|
|
||||||
|
imagemin: {
|
||||||
|
dist: {
|
||||||
|
files: [{
|
||||||
|
expand: true,
|
||||||
|
cwd: '<%= yeoman.app %>/images',
|
||||||
|
src: '{,*/}*.{png,jpg,jpeg,gif}',
|
||||||
|
dest: '<%= yeoman.dist %>/images'
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
svgmin: {
|
||||||
|
dist: {
|
||||||
|
files: [{
|
||||||
|
expand: true,
|
||||||
|
cwd: '<%= yeoman.app %>/images',
|
||||||
|
src: '{,*/}*.svg',
|
||||||
|
dest: '<%= yeoman.dist %>/images'
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
htmlmin: {
|
||||||
|
dist: {
|
||||||
|
options: {
|
||||||
|
collapseWhitespace: true,
|
||||||
|
conservativeCollapse: true,
|
||||||
|
collapseBooleanAttributes: true,
|
||||||
|
removeCommentsFromCDATA: true
|
||||||
|
},
|
||||||
|
files: [{
|
||||||
|
expand: true,
|
||||||
|
cwd: '<%= yeoman.dist %>',
|
||||||
|
src: ['*.html'],
|
||||||
|
dest: '<%= yeoman.dist %>'
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
ngtemplates: {
|
||||||
|
dist: {
|
||||||
|
options: {
|
||||||
|
module: 'clientApp',
|
||||||
|
htmlmin: '<%= htmlmin.dist.options %>',
|
||||||
|
usemin: 'scripts/scripts.js'
|
||||||
|
},
|
||||||
|
cwd: '<%= yeoman.app %>',
|
||||||
|
src: 'views/{,*/}*.html',
|
||||||
|
dest: '.tmp/templateCache.js'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// ng-annotate tries to make the code safe for minification automatically
|
||||||
|
// by using the Angular long form for dependency injection.
|
||||||
|
ngAnnotate: {
|
||||||
|
dist: {
|
||||||
|
files: [{
|
||||||
|
expand: true,
|
||||||
|
cwd: '.tmp/concat/scripts',
|
||||||
|
src: '*.js',
|
||||||
|
dest: '.tmp/concat/scripts'
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Replace Google CDN references
|
||||||
|
cdnify: {
|
||||||
|
dist: {
|
||||||
|
html: ['<%= yeoman.dist %>/*.html']
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Copies remaining files to places other tasks can use
|
||||||
|
copy: {
|
||||||
|
dist: {
|
||||||
|
files: [{
|
||||||
|
expand: true,
|
||||||
|
dot: true,
|
||||||
|
cwd: '<%= yeoman.app %>',
|
||||||
|
dest: '<%= yeoman.dist %>',
|
||||||
|
src: [
|
||||||
|
'*.{ico,png,txt}',
|
||||||
|
'*.html',
|
||||||
|
'images/{,*/}*.{webp}',
|
||||||
|
'styles/fonts/{,*/}*.*'
|
||||||
|
]
|
||||||
|
}, {
|
||||||
|
expand: true,
|
||||||
|
cwd: '.tmp/images',
|
||||||
|
dest: '<%= yeoman.dist %>/images',
|
||||||
|
src: ['generated/*']
|
||||||
|
}, {
|
||||||
|
expand: true,
|
||||||
|
cwd: 'bower_components/bootstrap/dist',
|
||||||
|
src: 'fonts/*',
|
||||||
|
dest: '<%= yeoman.dist %>'
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
styles: {
|
||||||
|
expand: true,
|
||||||
|
cwd: '<%= yeoman.app %>/styles',
|
||||||
|
dest: '.tmp/styles/',
|
||||||
|
src: '{,*/}*.css'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Run some tasks in parallel to speed up the build process
|
||||||
|
concurrent: {
|
||||||
|
server: [
|
||||||
|
'copy:styles'
|
||||||
|
],
|
||||||
|
test: [
|
||||||
|
'copy:styles'
|
||||||
|
],
|
||||||
|
dist: [
|
||||||
|
'copy:styles',
|
||||||
|
'imagemin',
|
||||||
|
'svgmin'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
// Test settings
|
||||||
|
karma: {
|
||||||
|
unit: {
|
||||||
|
configFile: 'test/karma.conf.js',
|
||||||
|
singleRun: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
grunt.registerTask('serve', 'Compile then start a connect web server', function (target) {
|
||||||
|
if (target === 'dist') {
|
||||||
|
return grunt.task.run(['build', 'connect:dist:keepalive']);
|
||||||
|
}
|
||||||
|
|
||||||
|
grunt.task.run([
|
||||||
|
'clean:server',
|
||||||
|
'wiredep',
|
||||||
|
'concurrent:server',
|
||||||
|
'postcss:server',
|
||||||
|
'connect:livereload',
|
||||||
|
'watch'
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
grunt.registerTask('server', 'DEPRECATED TASK. Use the "serve" task instead', function (target) {
|
||||||
|
grunt.log.warn('The `server` task has been deprecated. Use `grunt serve` to start a server.');
|
||||||
|
grunt.task.run(['serve:' + target]);
|
||||||
|
});
|
||||||
|
|
||||||
|
grunt.registerTask('test', [
|
||||||
|
'clean:server',
|
||||||
|
'wiredep',
|
||||||
|
'concurrent:test',
|
||||||
|
'postcss',
|
||||||
|
'connect:test',
|
||||||
|
'karma'
|
||||||
|
]);
|
||||||
|
|
||||||
|
grunt.registerTask('build', [
|
||||||
|
'clean:dist',
|
||||||
|
'wiredep',
|
||||||
|
'useminPrepare',
|
||||||
|
'concurrent:dist',
|
||||||
|
'postcss',
|
||||||
|
'ngtemplates',
|
||||||
|
'concat',
|
||||||
|
'ngAnnotate',
|
||||||
|
'copy:dist',
|
||||||
|
'cdnify',
|
||||||
|
'cssmin',
|
||||||
|
'uglify',
|
||||||
|
'filerev',
|
||||||
|
'usemin',
|
||||||
|
'htmlmin'
|
||||||
|
]);
|
||||||
|
|
||||||
|
grunt.registerTask('default', [
|
||||||
|
'newer:jshint',
|
||||||
|
'newer:jscs',
|
||||||
|
'test',
|
||||||
|
'build'
|
||||||
|
]);
|
||||||
|
};
|
25
frontend/README.md
Normal file
25
frontend/README.md
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# client
|
||||||
|
|
||||||
|
L'application cliente est développé avec le Framework AngularJS v1.4. La structure de l'application a été généré avec l'outil [yo angular generator](https://github.com/yeoman/generator-angular) version 0.15.1.
|
||||||
|
|
||||||
|
## Prérequis
|
||||||
|
|
||||||
|
- node v7.3.0
|
||||||
|
Un super outil pour avoir plusieurs versions de node sur la même machine,
|
||||||
|
intéressant si vous avez plusieurs projet qui nécessite des version de node différentes.
|
||||||
|
[nvm - Node Version Manager](https://github.com/creationix/nvm) ou (nvm-windows pour les windowsiens !)
|
||||||
|
|
||||||
|
- Installer grunt-cli et bower en global
|
||||||
|
> npm install -g grunt-cli bower
|
||||||
|
|
||||||
|
- Installer les modules npm
|
||||||
|
> npm install
|
||||||
|
|
||||||
|
- Installer les dépendances bower
|
||||||
|
> bower install
|
||||||
|
|
||||||
|
## Build & Développement & Test
|
||||||
|
|
||||||
|
- Build : `grunt build`
|
||||||
|
- Exécuter en local `grunt serve`
|
||||||
|
- Tester : `grunt test`
|
152
frontend/app/404.html
Normal file
152
frontend/app/404.html
Normal file
@ -0,0 +1,152 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Page Not Found :(</title>
|
||||||
|
<style>
|
||||||
|
::-moz-selection {
|
||||||
|
background: #b3d4fc;
|
||||||
|
text-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
::selection {
|
||||||
|
background: #b3d4fc;
|
||||||
|
text-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
padding: 30px 10px;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 1.4;
|
||||||
|
color: #737373;
|
||||||
|
background: #f0f0f0;
|
||||||
|
-webkit-text-size-adjust: 100%;
|
||||||
|
-ms-text-size-adjust: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
html,
|
||||||
|
input {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
max-width: 500px;
|
||||||
|
padding: 30px 20px 50px;
|
||||||
|
border: 1px solid #b3b3b3;
|
||||||
|
border-radius: 4px;
|
||||||
|
margin: 0 auto;
|
||||||
|
box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff;
|
||||||
|
background: #fcfcfc;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
margin: 0 10px;
|
||||||
|
font-size: 50px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 span {
|
||||||
|
color: #bbb;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
margin: 1.5em 0 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
padding: 0 0 0 40px;
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
max-width: 380px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* google search */
|
||||||
|
|
||||||
|
#goog-fixurl ul {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#goog-fixurl form {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#goog-wm-qt,
|
||||||
|
#goog-wm-sb {
|
||||||
|
border: 1px solid #bbb;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: normal;
|
||||||
|
vertical-align: top;
|
||||||
|
color: #444;
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#goog-wm-qt {
|
||||||
|
width: 220px;
|
||||||
|
height: 20px;
|
||||||
|
padding: 5px;
|
||||||
|
margin: 5px 10px 0 0;
|
||||||
|
box-shadow: inset 0 1px 1px #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#goog-wm-sb {
|
||||||
|
display: inline-block;
|
||||||
|
height: 32px;
|
||||||
|
padding: 0 10px;
|
||||||
|
margin: 5px 0 0;
|
||||||
|
white-space: nowrap;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1);
|
||||||
|
background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1);
|
||||||
|
background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1);
|
||||||
|
background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1);
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#goog-wm-sb:hover,
|
||||||
|
#goog-wm-sb:focus {
|
||||||
|
border-color: #aaa;
|
||||||
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||||
|
background-color: #f8f8f8;
|
||||||
|
}
|
||||||
|
|
||||||
|
#goog-wm-qt:hover,
|
||||||
|
#goog-wm-qt:focus {
|
||||||
|
border-color: #105cb6;
|
||||||
|
outline: 0;
|
||||||
|
color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
input::-moz-focus-inner {
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<h1>Not found <span>:(</span></h1>
|
||||||
|
<p>Sorry, but the page you were trying to view does not exist.</p>
|
||||||
|
<p>It looks like this was the result of either:</p>
|
||||||
|
<ul>
|
||||||
|
<li>a mistyped address</li>
|
||||||
|
<li>an out-of-date link</li>
|
||||||
|
</ul>
|
||||||
|
<script>
|
||||||
|
var GOOG_FIXURL_LANG = (navigator.language || '').slice(0,2),GOOG_FIXURL_SITE = location.host;
|
||||||
|
</script>
|
||||||
|
<script src="//linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
frontend/app/favicon.ico
Normal file
BIN
frontend/app/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
BIN
frontend/app/images/yeoman.png
Normal file
BIN
frontend/app/images/yeoman.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
54
frontend/app/index.html
Normal file
54
frontend/app/index.html
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title></title>
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width">
|
||||||
|
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
|
||||||
|
<!-- build:css(.) styles/vendor.css -->
|
||||||
|
<!-- bower:css -->
|
||||||
|
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css" />
|
||||||
|
<!-- endbower -->
|
||||||
|
<!-- endbuild -->
|
||||||
|
<!-- build:css(.tmp) styles/main.css -->
|
||||||
|
<link rel="stylesheet" href="styles/main.css">
|
||||||
|
<!-- endbuild -->
|
||||||
|
</head>
|
||||||
|
<body ng-app="clientApp">
|
||||||
|
<!--[if lte IE 8]>
|
||||||
|
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
|
||||||
|
<![endif]-->
|
||||||
|
|
||||||
|
<ui-view></ui-view>
|
||||||
|
|
||||||
|
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID -->
|
||||||
|
<script>
|
||||||
|
!function(A,n,g,u,l,a,r){A.GoogleAnalyticsObject=l,A[l]=A[l]||function(){
|
||||||
|
(A[l].q=A[l].q||[]).push(arguments)},A[l].l=+new Date,a=n.createElement(g),
|
||||||
|
r=n.getElementsByTagName(g)[0],a.src=u,r.parentNode.insertBefore(a,r)
|
||||||
|
}(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||||
|
|
||||||
|
ga('create', 'UA-XXXXX-X');
|
||||||
|
ga('send', 'pageview');
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- build:js(.) scripts/vendor.js -->
|
||||||
|
<!-- bower:js -->
|
||||||
|
<script src="bower_components/jquery/dist/jquery.js"></script>
|
||||||
|
<script src="bower_components/angular/angular.js"></script>
|
||||||
|
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
|
||||||
|
<script src="bower_components/angular-sanitize/angular-sanitize.js"></script>
|
||||||
|
<script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
|
||||||
|
<!-- endbower -->
|
||||||
|
<!-- endbuild -->
|
||||||
|
|
||||||
|
<!-- build:js({.tmp,app}) scripts/scripts.js -->
|
||||||
|
<script src="scripts/app.js"></script>
|
||||||
|
<script src="scripts/controllers/accueil.js"></script>
|
||||||
|
|
||||||
|
<script src="scripts/services/AuthService.js"></script>
|
||||||
|
<script src="scripts/services/DataService.js"></script>
|
||||||
|
<!-- endbuild -->
|
||||||
|
</body>
|
||||||
|
</html>
|
4
frontend/app/robots.txt
Normal file
4
frontend/app/robots.txt
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# robotstxt.org
|
||||||
|
|
||||||
|
User-agent: *
|
||||||
|
Disallow:
|
83
frontend/app/styles/main.css
Normal file
83
frontend/app/styles/main.css
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
.browsehappy {
|
||||||
|
margin: 0.2em 0;
|
||||||
|
background: #ccc;
|
||||||
|
color: #000;
|
||||||
|
padding: 0.2em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Everything but the jumbotron gets side spacing for mobile first views */
|
||||||
|
.header,
|
||||||
|
.marketing,
|
||||||
|
.footer {
|
||||||
|
padding-left: 15px;
|
||||||
|
padding-right: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Custom page header */
|
||||||
|
.header {
|
||||||
|
border-bottom: 1px solid #e5e5e5;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
/* Make the masthead heading the same height as the navigation */
|
||||||
|
.header h3 {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
line-height: 40px;
|
||||||
|
padding-bottom: 19px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Custom page footer */
|
||||||
|
.footer {
|
||||||
|
padding-top: 19px;
|
||||||
|
color: #777;
|
||||||
|
border-top: 1px solid #e5e5e5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container-narrow > hr {
|
||||||
|
margin: 30px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Main marketing message and sign up button */
|
||||||
|
.jumbotron {
|
||||||
|
text-align: center;
|
||||||
|
border-bottom: 1px solid #e5e5e5;
|
||||||
|
}
|
||||||
|
.jumbotron .btn {
|
||||||
|
font-size: 21px;
|
||||||
|
padding: 14px 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Supporting marketing content */
|
||||||
|
.marketing {
|
||||||
|
margin: 40px 0;
|
||||||
|
}
|
||||||
|
.marketing p + h4 {
|
||||||
|
margin-top: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive: Portrait tablets and up */
|
||||||
|
@media screen and (min-width: 768px) {
|
||||||
|
.container {
|
||||||
|
max-width: 730px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Remove the padding we set earlier */
|
||||||
|
.header,
|
||||||
|
.marketing,
|
||||||
|
.footer {
|
||||||
|
padding-left: 0;
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
/* Space out the masthead */
|
||||||
|
.header {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
/* Remove the bottom border on the jumbotron for visual effect */
|
||||||
|
.jumbotron {
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
62
frontend/app/views/accueil.html
Normal file
62
frontend/app/views/accueil.html
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<!-- Add your site or application content here -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="navbar navbar-default" role="navigation">
|
||||||
|
<div class="container">
|
||||||
|
<div class="navbar-header">
|
||||||
|
|
||||||
|
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#js-navbar-collapse">
|
||||||
|
<span class="sr-only">Toggle navigation</span>
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<a class="navbar-brand" href="#/">client</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="js-navbar-collapse">
|
||||||
|
|
||||||
|
<ul class="nav navbar-nav">
|
||||||
|
<li class="active"><a href="#/">Home</a></li>
|
||||||
|
<li><a ng-href="#/">About</a></li>
|
||||||
|
<li><a ng-href="#/">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="jumbotron">
|
||||||
|
<h1>'Allo, 'Allo!</h1>
|
||||||
|
<p class="lead">
|
||||||
|
<img src="images/yeoman.png" alt="I'm Yeoman"><br>
|
||||||
|
Always a pleasure scaffolding your apps.
|
||||||
|
</p>
|
||||||
|
<p><a class="btn btn-lg btn-success" ng-href="#/">Splendid!<span class="glyphicon glyphicon-ok"></span></a></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row marketing">
|
||||||
|
<h4>HTML5 Boilerplate</h4>
|
||||||
|
<p>
|
||||||
|
HTML5 Boilerplate is a professional front-end template for building fast, robust, and adaptable web apps or sites.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h4>Angular</h4>
|
||||||
|
<p>
|
||||||
|
AngularJS is a toolset for building the framework most suited to your application development.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h4>Karma</h4>
|
||||||
|
<p>Spectacular Test Runner for JavaScript.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
<div class="container">
|
||||||
|
<p><span class="glyphicon glyphicon-heart"></span> from the Yeoman team</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
24
frontend/bower.json
Normal file
24
frontend/bower.json
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"name": "client",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"dependencies": {
|
||||||
|
"angular": "^1.6.0",
|
||||||
|
"bootstrap": "^3.2.0",
|
||||||
|
"angular-sanitize": "^1.6.0",
|
||||||
|
"angular-ui-router": "1.0.0-beta.3"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"angular-mocks": "^1.6.0"
|
||||||
|
},
|
||||||
|
"appPath": "app",
|
||||||
|
"moduleName": "clientApp",
|
||||||
|
"overrides": {
|
||||||
|
"bootstrap": {
|
||||||
|
"main": [
|
||||||
|
"less/bootstrap.less",
|
||||||
|
"dist/css/bootstrap.css",
|
||||||
|
"dist/js/bootstrap.js"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
44
frontend/package.json
Normal file
44
frontend/package.json
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"name": "client",
|
||||||
|
"private": true,
|
||||||
|
"devDependencies": {
|
||||||
|
"autoprefixer-core": "^5.2.1",
|
||||||
|
"grunt": "^0.4.5",
|
||||||
|
"grunt-angular-templates": "^0.5.7",
|
||||||
|
"grunt-concurrent": "^1.0.0",
|
||||||
|
"grunt-contrib-clean": "^0.6.0",
|
||||||
|
"grunt-contrib-concat": "^0.5.0",
|
||||||
|
"grunt-contrib-connect": "^0.9.0",
|
||||||
|
"grunt-contrib-copy": "^0.7.0",
|
||||||
|
"grunt-contrib-cssmin": "^0.12.0",
|
||||||
|
"grunt-contrib-htmlmin": "^0.4.0",
|
||||||
|
"grunt-contrib-imagemin": "^1.0.0",
|
||||||
|
"grunt-contrib-jshint": "^0.11.0",
|
||||||
|
"grunt-contrib-uglify": "^0.7.0",
|
||||||
|
"grunt-contrib-watch": "^0.6.1",
|
||||||
|
"grunt-filerev": "^2.1.2",
|
||||||
|
"grunt-google-cdn": "^0.4.3",
|
||||||
|
"grunt-jscs": "^1.8.0",
|
||||||
|
"grunt-newer": "^1.1.0",
|
||||||
|
"grunt-ng-annotate": "^0.9.2",
|
||||||
|
"grunt-postcss": "^0.5.5",
|
||||||
|
"grunt-svgmin": "^2.0.0",
|
||||||
|
"grunt-usemin": "^3.0.0",
|
||||||
|
"grunt-wiredep": "^2.0.0",
|
||||||
|
"jasmine-core": "^2.5.2",
|
||||||
|
"jit-grunt": "^0.9.1",
|
||||||
|
"jshint-stylish": "^1.0.0",
|
||||||
|
"karma": "^1.4.0",
|
||||||
|
"karma-jasmine": "^1.1.0",
|
||||||
|
"karma-phantomjs-launcher": "^1.0.2",
|
||||||
|
"phantomjs-prebuilt": "^2.1.14",
|
||||||
|
"time-grunt": "^1.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=0.10.0"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "karma start test/karma.conf.js"
|
||||||
|
},
|
||||||
|
"dependencies": {}
|
||||||
|
}
|
18
frontend/test/.jshintrc
Normal file
18
frontend/test/.jshintrc
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bitwise": true,
|
||||||
|
"browser": true,
|
||||||
|
"curly": true,
|
||||||
|
"eqeqeq": true,
|
||||||
|
"esnext": true,
|
||||||
|
"jasmine": true,
|
||||||
|
"latedef": true,
|
||||||
|
"noarg": true,
|
||||||
|
"node": true,
|
||||||
|
"strict": true,
|
||||||
|
"undef": true,
|
||||||
|
"unused": true,
|
||||||
|
"globals": {
|
||||||
|
"angular": false,
|
||||||
|
"inject": false
|
||||||
|
}
|
||||||
|
}
|
77
frontend/test/karma.conf.js
Normal file
77
frontend/test/karma.conf.js
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
// Karma configuration
|
||||||
|
// Generated on 2017-01-20
|
||||||
|
|
||||||
|
module.exports = function(config) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
config.set({
|
||||||
|
// enable / disable watching file and executing tests whenever any file changes
|
||||||
|
autoWatch: true,
|
||||||
|
|
||||||
|
// base path, that will be used to resolve files and exclude
|
||||||
|
basePath: '../',
|
||||||
|
|
||||||
|
// testing framework to use (jasmine/mocha/qunit/...)
|
||||||
|
// as well as any additional frameworks (requirejs/chai/sinon/...)
|
||||||
|
frameworks: [
|
||||||
|
'jasmine'
|
||||||
|
],
|
||||||
|
|
||||||
|
// list of files / patterns to load in the browser
|
||||||
|
files: [
|
||||||
|
// bower:js
|
||||||
|
'bower_components/jquery/dist/jquery.js',
|
||||||
|
'bower_components/angular/angular.js',
|
||||||
|
'bower_components/bootstrap/dist/js/bootstrap.js',
|
||||||
|
'bower_components/angular-sanitize/angular-sanitize.js',
|
||||||
|
'bower_components/angular-ui-router/release/angular-ui-router.js',
|
||||||
|
'bower_components/angular-mocks/angular-mocks.js',
|
||||||
|
// endbower
|
||||||
|
'app/scripts/**/*.js',
|
||||||
|
'test/mock/**/*.js',
|
||||||
|
'test/spec/**/*.js'
|
||||||
|
],
|
||||||
|
|
||||||
|
// list of files / patterns to exclude
|
||||||
|
exclude: [
|
||||||
|
],
|
||||||
|
|
||||||
|
// web server port
|
||||||
|
port: 8080,
|
||||||
|
|
||||||
|
// Start these browsers, currently available:
|
||||||
|
// - Chrome
|
||||||
|
// - ChromeCanary
|
||||||
|
// - Firefox
|
||||||
|
// - Opera
|
||||||
|
// - Safari (only Mac)
|
||||||
|
// - PhantomJS
|
||||||
|
// - IE (only Windows)
|
||||||
|
browsers: [
|
||||||
|
'PhantomJS'
|
||||||
|
],
|
||||||
|
|
||||||
|
// Which plugins to enable
|
||||||
|
plugins: [
|
||||||
|
'karma-phantomjs-launcher',
|
||||||
|
'karma-jasmine'
|
||||||
|
],
|
||||||
|
|
||||||
|
// Continuous Integration mode
|
||||||
|
// if true, it capture browsers, run tests and exit
|
||||||
|
singleRun: false,
|
||||||
|
|
||||||
|
colors: true,
|
||||||
|
|
||||||
|
// level of logging
|
||||||
|
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
|
||||||
|
logLevel: config.LOG_INFO,
|
||||||
|
|
||||||
|
// Uncomment the following lines if you are using grunt's server to run the tests
|
||||||
|
// proxies: {
|
||||||
|
// '/': 'http://localhost:9000/'
|
||||||
|
// },
|
||||||
|
// URL root prevent conflicts with the site root
|
||||||
|
// urlRoot: '_karma_'
|
||||||
|
});
|
||||||
|
};
|
23
frontend/test/spec/controllers/main.js
Normal file
23
frontend/test/spec/controllers/main.js
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
describe('Controller: MainCtrl', function () {
|
||||||
|
|
||||||
|
// load the controller's module
|
||||||
|
beforeEach(module('clientApp'));
|
||||||
|
|
||||||
|
var MainCtrl,
|
||||||
|
scope;
|
||||||
|
|
||||||
|
// Initialize the controller and a mock scope
|
||||||
|
beforeEach(inject(function ($controller, $rootScope) {
|
||||||
|
scope = $rootScope.$new();
|
||||||
|
MainCtrl = $controller('MainCtrl', {
|
||||||
|
$scope: scope
|
||||||
|
// place here mocked dependencies
|
||||||
|
});
|
||||||
|
}));
|
||||||
|
|
||||||
|
it('should attach a list of awesomeThings to the scope', function () {
|
||||||
|
expect(MainCtrl.awesomeThings.length).toBe(3);
|
||||||
|
});
|
||||||
|
});
|
Reference in New Issue
Block a user