Removed development console.log's
This commit is contained in:
parent
a554b91e53
commit
220dcf18ab
@ -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"
|
||||
|
@ -40,8 +40,6 @@ const tokenGenerate = (email: string, id: number) => {
|
||||
expiresIn: '7 days',
|
||||
})
|
||||
|
||||
if (process.env.NODE_ENV != 'production') console.log(token)
|
||||
|
||||
return token
|
||||
}
|
||||
|
||||
|
@ -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}`)
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user