fix: small fixes and release prep

This commit is contained in:
Taranto 2020-12-24 13:29:32 +00:00 committed by Josh Harvey
parent 5823485ab7
commit 0ad1ba2f77
20 changed files with 195 additions and 164 deletions

View file

@ -15,9 +15,9 @@ server.applyMiddleware({ app })
app.use(bodyParser.json())
function run () {
const serverLog = `lamassu-admin-server listening on port ${8080}${server.graphqlPath}`
const serverLog = `lamassu-admin-server listening on port ${9010}${server.graphqlPath}`
app.listen(8080, () => console.log(serverLog))
app.listen(9010, () => console.log(serverLog))
}
module.exports = { run }