Skip to content

Commit 5341195

Browse files
committed
Initial commit
0 parents  commit 5341195

File tree

11 files changed

+1054
-0
lines changed

11 files changed

+1054
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.idea/
2+
/dist/
3+
/build/
4+
node_modules/

.tabrisignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
src/
2+
tslint.json
3+
tsconfig.json
4+
.gitignore
5+
README.md

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# taco-shaker
2+
3+
On startup, this app will grab a random full taco recipe from the [Tacofancy API](http://www.randomtaco.me/).
4+
5+
When the device is shaken, a new recipe is loaded.

cordova/config.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version='1.0' encoding='utf-8'?>
2+
<widget id="com.tim.bond.taco.shaker" version="0.1.0">
3+
<name>Taco Shaker</name>
4+
<description>Example Tabris.js App using TypeScript and cordova-plugin-shake</description>
5+
<author email="[email protected]">Tim Bond</author>
6+
<preference name="EnableDeveloperConsole" value="$IS_DEBUG" />
7+
<plugin name="cordova-plugin-shake" version="0.6.0" />
8+
</widget>

0 commit comments

Comments
 (0)