Removed development console.log's

This commit is contained in:
Dmitriy Shishkov 2020-11-07 07:06:52 +05:00
parent a554b91e53
commit 220dcf18ab
No known key found for this signature in database
GPG Key ID: D76D70029F55183E
3 changed files with 5 additions and 5 deletions

View File

@ -19,7 +19,7 @@
"dev": "nodemon",
"start": "ts-node src/index.ts",
"copy-assets": "cp src/typeDefs/typeDefs.gql dist/typeDefs/typeDefs.gql && cp .env.example dist/.env && vi dist/.env",
"build": "tsc && npm copy-assets",
"build": "tsc && yarn copy-assets",
"codegen": "graphql-codegen --config codegen.yml",
"lint": "eslint",
"test": "echo \"Error: no test specified\" && exit 1"

View File

@ -40,8 +40,6 @@ const tokenGenerate = (email: string, id: number) => {
expiresIn: '7 days',
})
if (process.env.NODE_ENV != 'production') console.log(token)
return token
}

View File

@ -51,6 +51,8 @@ const server = new ApolloServer({
server.applyMiddleware({ app })
app.listen(4000, () => {
console.log('Server ready at http://localhost:4000')
const port = process.env.PORT || 4000
app.listen(port, () => {
console.log(`Server ready at http://localhost:${port}`)
})