Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 42e1a20

Browse files
author
Sashko Stubailo
committed
Fix up config files
1 parent 96d5126 commit 42e1a20

File tree

4 files changed

+3
-21
lines changed

4 files changed

+3
-21
lines changed

.babelrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"presets": [
33
"es2015",
4-
"stage-2",
5-
"react"
4+
"stage-2"
65
]
76
}

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
language: node_js
22
node_js:
33
- "6"
4-
- "5"
54
- "4"

knexfile.js

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,6 @@ module.exports = {
1010
useNullAsDefault: true
1111
},
1212
//
13-
// staging: {
14-
// client: 'postgresql',
15-
// connection: {
16-
// database: 'my_db',
17-
// user: 'username',
18-
// password: 'password'
19-
// },
20-
// pool: {
21-
// min: 2,
22-
// max: 10
23-
// },
24-
// migrations: {
25-
// tableName: 'knex_migrations'
26-
// }
27-
// },
28-
//
2913
// production: {
3014
// client: 'postgresql',
3115
// connection: {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"name": "githunt",
2+
"name": "githunt-api",
33
"version": "1.0.0",
44
"description": "Example app for Apollo",
5-
"main": "index.js",
65
"scripts": {
76
"start": "nodemon api/index.js --watch api --exec babel-node",
87
"lint": "eslint api",
98
"test": "mocha --compilers js:babel-core/register --reporter spec --full-trace 'api/**/*.test.js' && npm run lint",
109
"seed": "knex seed:run",
1110
"migrate": "knex migrate:latest"
1211
},
12+
"private": true,
1313
"repository": {
1414
"type": "git",
1515
"url": "git+https://github.com/apollostack/GitHunt.git"

0 commit comments

Comments
 (0)