Skip to content

Commit

Permalink
re-structures project to match the project guidelines
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardolobo committed Jan 5, 2016
1 parent 3be7110 commit d71bbc7
Show file tree
Hide file tree
Showing 11 changed files with 199 additions and 140 deletions.
4 changes: 2 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ignore linux temp files recursively
**/*~

# do not copy the settings file to image
app/app.settings.js
# do not copy the settings file to the final image
app/core/settings.js
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ node_modules/*
bower_components/*

# project settings
app/app.settings.js
app/core/settings.js

# ignore templates.js they are auto-generated
app/core/templates.js

# build folder
build/
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ $ gulp check
* If you think a jshint rule does not make sense in a specific case, you can hide a warning with a snippet of code
* To that, add the following snippet to your file (/* jshint -W034 */), the -W034 part must match the rule code your trying to hide

#### Project Guidelines ####

* We are currently migrating the project to match John Papa's angular-styleguide https://github.com/johnpapa/angular-styleguide
* Use these guidelines as a reference, if you find something in the code that does not match, correct it or open an issue

### Who do I talk to? ###

If you have something to say, feel free to contact:
Expand Down
File renamed without changes.
50 changes: 0 additions & 50 deletions app/index.html

This file was deleted.

2 changes: 1 addition & 1 deletion app/app.css → content/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ body{
transform: translateY(-50%);
left: 15px;
font-size: 30px;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'use strict';

angular
.module('app')
.module('app.core')
.constant('AppSettings', {
appName: 'Boxing Lab',
appVersion: 0.1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'use strict';

angular
.module('app')
.module('app.core')
.constant('AppSettings', {
appName: 'Boxing Lab',
appVersion: 0.1,
Expand Down
Loading

0 comments on commit d71bbc7

Please sign in to comment.