Skip to content

Commit

Permalink
Check in a skeleton based on the ionic starter project
Browse files Browse the repository at this point in the history
This was generated using the yeoman ionic generator.
https://github.com/diegonetto/generator-ionic

so unlike the classic ionic/cordova, all the real code is under "app" and is
minifed before being copied into www

The only change to the starter project was to change the "img" to "images" in
the service to make the images load correctly.
  • Loading branch information
shankari committed Jan 28, 2016
0 parents commit 2507f97
Show file tree
Hide file tree
Showing 77 changed files with 3,992 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
@@ -0,0 +1,3 @@
{
"directory": "app/bower_components"
}
13 changes: 13 additions & 0 deletions .editorconfig
@@ -0,0 +1,13 @@
# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
15 changes: 15 additions & 0 deletions .gitignore
@@ -0,0 +1,15 @@
node_modules
www
.idea
.temp
.sass-cache
app/bower_components
coverage
platforms
plugins
*.swp
*.swo
*.log
*.DS_Store

app/scripts/configuration.js
1 change: 1 addition & 0 deletions .jshintignore
@@ -0,0 +1 @@
app/scripts/configuration.js
26 changes: 26 additions & 0 deletions .jshintrc
@@ -0,0 +1,26 @@
{
"node": true,
"browser": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"globals": {
"angular": false,
"cordova": false,
"StatusBar": false
}
}

0 comments on commit 2507f97

Please sign in to comment.