Skip to content

Commit

Permalink
Merge pull request #12 from tasitlabs/develop
Browse files Browse the repository at this point in the history
merge
  • Loading branch information
marcelomorgado committed Jan 18, 2019
2 parents ae74a42 + d8a9099 commit 2c8e638
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 7 deletions.
45 changes: 45 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:10.13

working_directory: ~/tasit/demo

steps:
- checkout:
path: ~/tasit

- run:
name: update-npm
command: "sudo npm install -g npm@latest"

# Download and cache dependencies
- restore_cache:
keys:
- dependency-cache-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- dependency-cache-

- run:
name: npm install
command: npm install

- save_cache:
paths:
- ./node_modules
key: dependency-cache-{{ checksum "package.json" }}

# run tests!
- run:
name: lint
command: npm run lint

- run:
name: test
command: npm test
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,7 @@ The app is built using React Native, Expo, [React Navigation](https://reactnavig
> - A working demo of onboarding for users new to Ethereum
> - Minimal proof-of-concept app ready to ship to TestFlight for iOS using a testnet
##### Try it out

[Here's the code](./demo) for the demo app.

Clone this repo.
##### Getting started

```
git clone https://github.com/tasitlabs/tasit.git
Expand All @@ -46,6 +42,11 @@ npm i
npm start
```

##### Review the code

[Here's the code](./demo) for the demo app.


### Tasit Decentraland

Our first production app is called `Tasit Decentraland`.
Expand Down Expand Up @@ -95,9 +96,9 @@ For more info, please visit our website:

We love getting feedback, so please feel free to reach out.

- [Website](https://tasit.io/)
- [tasit.io](https://tasit.io/)

- [Twitter](https://twitter.com/tasitlabs)
- [@TasitLabs](https://twitter.com/tasitlabs) on Twitter

- [Telegram](https://t.me/tasitlabs)

Expand Down

0 comments on commit 2c8e638

Please sign in to comment.