This commit is contained in:
Tom Moor
2018-05-26 17:59:34 -07:00
parent b495dce043
commit 5bebb7351d
4 changed files with 11 additions and 5 deletions

View File

@ -10,7 +10,7 @@
"start": "NODE_ENV=production node index.js", "start": "NODE_ENV=production node index.js",
"dev": "NODE_ENV=development nodemon --watch server index.js", "dev": "NODE_ENV=development nodemon --watch server index.js",
"lint": "npm run lint:flow && npm run lint:js", "lint": "npm run lint:flow && npm run lint:js",
"lint:js": "eslint app", "lint:js": "eslint app server",
"lint:flow": "flow", "lint:flow": "flow",
"deploy": "git push heroku master", "deploy": "git push heroku master",
"heroku-postbuild": "npm run build && npm run sequelize:migrate", "heroku-postbuild": "npm run build && npm run sequelize:migrate",

View File

@ -1,6 +1,5 @@
// @flow // @flow
import Queue from 'bull'; import Queue from 'bull';
import debug from 'debug';
import services from './services'; import services from './services';
import { Collection, Document } from './models'; import { Collection, Document } from './models';

View File

@ -68,7 +68,11 @@ export default function About() {
<strong>Jori Lallo</strong> <strong>Jori Lallo</strong>
</div> </div>
<div> <div>
<a href="https://twitter.com/jorilallo" target="_blank" rel="noopener noreferrer"> <a
href="https://twitter.com/jorilallo"
target="_blank"
rel="noopener noreferrer"
>
@jorilallo @jorilallo
</a> </a>
</div> </div>
@ -80,7 +84,11 @@ export default function About() {
<strong>Tom Moor</strong> <strong>Tom Moor</strong>
</div> </div>
<div> <div>
<a href="https://twitter.com/tommoor" target="_blank" rel="noopener noreferrer"> <a
href="https://twitter.com/tommoor"
target="_blank"
rel="noopener noreferrer"
>
@tommoor @tommoor
</a> </a>
</div> </div>

View File

@ -1,7 +1,6 @@
// @flow // @flow
import * as React from 'react'; import * as React from 'react';
import path from 'path'; import path from 'path';
import fs from 'fs-extra';
import Koa from 'koa'; import Koa from 'koa';
import Router from 'koa-router'; import Router from 'koa-router';
import sendfile from 'koa-sendfile'; import sendfile from 'koa-sendfile';