Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher igbojekwe authored and christopher igbojekwe committed May 19, 2019
0 parents commit 9c85869
Show file tree
Hide file tree
Showing 25,059 changed files with 4,398,141 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
29 changes: 29 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
version: 2
jobs:
build:
working_directory: ~/Chainlinked
# The primary container is an instance of the first image listed. The job's commands run in this container.
docker:
- image: circleci/node:8-browsers
# The secondary container is an instance of the second listed image which is run in a common network where ports exposed on the primary container are available on localhost.
- image: trufflesuite/ganache-cli
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Update npm
command: 'sudo npm install -g npm@latest'
- run:
name: Install npm packages
command: npm install
- run:
name: Migrate Contracts
command: npm run migrate
- run:
name: Test Contracts
command: npm test
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- node_modules
33 changes: 33 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"env": {
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"no-undef": 0
}
}
1 change: 1 addition & 0 deletions .next/server/pages-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"/_app":"static/development/pages/_app.js","/_document":"static/development/pages/_document.js","/_error":"static/development/pages/_error.js"}
4 changes: 4 additions & 0 deletions .next/server/ssr-module-cache.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

/* This cache is used by webpack for instantiated modules */
module.exports = {}

Loading

0 comments on commit 9c85869

Please sign in to comment.