Skip to content
This repository has been archived by the owner on May 31, 2019. It is now read-only.

Commit

Permalink
fix: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dara Hayes committed Aug 9, 2018
1 parent 459f436 commit f377e6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sequelize/seeders/memeolist-example-postgres.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const time = new Date()
const datasources = [
{
id: 1,
name: 'nedb_postgres',
name: 'memeolist_postgres',
type: 'Postgres',
config: `{"options":{
"user": "postgresql",
Expand Down
2 changes: 1 addition & 1 deletion server/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const config = {
endpointURL: '/graphql', // if you want GraphiQL enabled
query: graphiqlQueryFileContent,
variables: graphiqlVariableFileContent,
subscriptionsEndpoint: `ws://${hostname()}:${port}/subscriptions`
subscriptionsEndpoint: process.env.GRAPHIQL_SUBS_ENDPOINT || `ws://${hostname()}:${port}/subscriptions`
},
postgresConfig: {
database: process.env.POSTGRES_DATABASE || 'aerogear_data_sync_db',
Expand Down

0 comments on commit f377e6f

Please sign in to comment.