Skip to content

Commit 05eaa42

Browse files
committed
new demo
1 parent d242bb2 commit 05eaa42

Some content is hidden

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

72 files changed

+564
-0
lines changed

ionic_openwhisk/.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
2+
# editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 2
9+
10+
# We recommend you to keep these unchanged
11+
end_of_line = lf
12+
charset = utf-8
13+
trim_trailing_whitespace = true
14+
insert_final_newline = true
15+
16+
[*.md]
17+
trim_trailing_whitespace = false

ionic_openwhisk/.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Specifies intentionally untracked files to ignore when using Git
2+
# http://git-scm.com/docs/gitignore
3+
4+
*~
5+
*.sw[mnpcod]
6+
*.log
7+
*.tmp
8+
*.tmp.*
9+
log.txt
10+
*.sublime-project
11+
*.sublime-workspace
12+
.vscode/
13+
npm-debug.log*
14+
15+
.idea/
16+
.sass-cache/
17+
.tmp/
18+
.versions/
19+
coverage/
20+
dist/
21+
node_modules/
22+
tmp/
23+
temp/
24+
hooks/
25+
platforms/
26+
plugins/
27+
plugins/android.json
28+
plugins/ios.json
29+
www/
30+
$RECYCLE.BIN/
31+
32+
.DS_Store
33+
Thumbs.db
34+
UserInterfaceState.xcuserstate

ionic_openwhisk/ionic.config.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "ionic_openwhisk",
3+
"app_id": "",
4+
"v2": true,
5+
"typescript": true
6+
}

ionic_openwhisk/package.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"name": "ionic-hello-world",
3+
"author": "Ionic Framework",
4+
"homepage": "http://ionicframework.com/",
5+
"private": true,
6+
"scripts": {
7+
"clean": "ionic-app-scripts clean",
8+
"build": "ionic-app-scripts build",
9+
"ionic:build": "ionic-app-scripts build",
10+
"ionic:serve": "ionic-app-scripts serve"
11+
},
12+
"dependencies": {
13+
"@angular/common": "2.2.1",
14+
"@angular/compiler": "2.2.1",
15+
"@angular/compiler-cli": "2.2.1",
16+
"@angular/core": "2.2.1",
17+
"@angular/forms": "2.2.1",
18+
"@angular/http": "2.2.1",
19+
"@angular/platform-browser": "2.2.1",
20+
"@angular/platform-browser-dynamic": "2.2.1",
21+
"@angular/platform-server": "2.2.1",
22+
"@ionic/storage": "1.1.7",
23+
"ionic-angular": "2.0.0-rc.4",
24+
"ionic-native": "^2.2.11",
25+
"ionicons": "3.0.0",
26+
"rxjs": "5.0.0-beta.12",
27+
"zone.js": "0.6.26"
28+
},
29+
"devDependencies": {
30+
"@ionic/app-scripts": "0.0.47",
31+
"typescript": "2.0.9"
32+
},
33+
"cordovaPlugins": [
34+
"cordova-plugin-whitelist",
35+
"cordova-plugin-console",
36+
"cordova-plugin-statusbar",
37+
"cordova-plugin-device",
38+
"cordova-plugin-splashscreen",
39+
"ionic-plugin-keyboard"
40+
],
41+
"cordovaPlatforms": [],
42+
"description": "ionic_openwhisk: An Ionic project"
43+
}
2.81 KB
1.13 KB
1.76 KB
4.22 KB
7.61 KB
11.5 KB

0 commit comments

Comments
 (0)