Skip to content

Commit d5ac12a

Browse files
Raymond CamdenRaymond Camden
authored andcommitted
2 parents d94db70 + 651ca59 commit d5ac12a

Some content is hidden

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

71 files changed

+732
-0
lines changed

db3/.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

db3/.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

db3/.io-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"app_id":"62403545","api_key":"ba09aa455978483e01fd3e12ea456cbce3d0bb51c3ced96e"}

db3/config.xml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<widget id="com.ionicframework.db3574610" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
3+
<name>db3</name>
4+
<description>An awesome Ionic/Cordova app.</description>
5+
<author email="hi@ionicframework" href="http://ionicframework.com/">Ionic Framework Team</author>
6+
<content src="index.html"/>
7+
<access origin="*"/>
8+
<allow-intent href="http://*/*"/>
9+
<allow-intent href="https://*/*"/>
10+
<allow-intent href="tel:*"/>
11+
<allow-intent href="sms:*"/>
12+
<allow-intent href="mailto:*"/>
13+
<allow-intent href="geo:*"/>
14+
<platform name="android">
15+
<allow-intent href="market:*"/>
16+
</platform>
17+
<platform name="ios">
18+
<allow-intent href="itms:*"/>
19+
<allow-intent href="itms-apps:*"/>
20+
</platform>
21+
<preference name="webviewbounce" value="false"/>
22+
<preference name="UIWebViewBounce" value="false"/>
23+
<preference name="DisallowOverscroll" value="true"/>
24+
<preference name="android-minSdkVersion" value="16"/>
25+
<preference name="BackupWebStorage" value="none"/>
26+
<preference name="SplashMaintainAspectRatio" value="true"/>
27+
<preference name="FadeSplashScreenDuration" value="300"/>
28+
<feature name="StatusBar">
29+
<param name="ios-package" onload="true" value="CDVStatusBar"/>
30+
</feature>
31+
</widget>

db3/ionic.config.json

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

db3/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+
"ionic:build": "ionic-app-scripts build",
8+
"ionic:serve": "ionic-app-scripts serve"
9+
},
10+
"dependencies": {
11+
"@angular/common": "2.1.1",
12+
"@angular/compiler": "2.1.1",
13+
"@angular/compiler-cli": "2.1.1",
14+
"@angular/core": "2.1.1",
15+
"@angular/forms": "2.1.1",
16+
"@angular/http": "2.1.1",
17+
"@angular/platform-browser": "2.1.1",
18+
"@angular/platform-browser-dynamic": "2.1.1",
19+
"@angular/platform-server": "2.1.1",
20+
"@ionic/cloud-angular": "^0.7.0-db.alpha.0",
21+
"@ionic/db": "latest",
22+
"@ionic/storage": "1.1.6",
23+
"ionic-angular": "2.0.0-rc.3",
24+
"ionic-native": "2.2.3",
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.45",
31+
"typescript": "2.0.6"
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": "db3: An Ionic project"
43+
}
2.81 KB
1.13 KB
1.76 KB
4.22 KB

0 commit comments

Comments
 (0)