Fixed environment variables in development
This commit is contained in:
parent
c09a66c6dd
commit
aa73cc9a83
@ -27,12 +27,12 @@
|
||||
"@graphql-codegen/introspection": "1.18.0",
|
||||
"@graphql-codegen/typescript": "1.17.10",
|
||||
"@graphql-codegen/typescript-resolvers": "1.17.10",
|
||||
"@prisma/cli": "2.8.1",
|
||||
"@types/dotenv": "^8.2.0",
|
||||
"@types/jsonwebtoken": "^8.5.0",
|
||||
"dotenv": "^8.2.0",
|
||||
"ts-node": "^9.0.0",
|
||||
"typescript": "^4.0.3",
|
||||
"nodemon": "^2.0.4",
|
||||
"@prisma/cli": "2.8.1"
|
||||
"ts-node": "^9.0.0",
|
||||
"typescript": "^4.0.3"
|
||||
}
|
||||
}
|
||||
|
@ -10,6 +10,8 @@ import { CheckRightsAndResolve } from './types'
|
||||
import { getDBFormAuthor } from '../db'
|
||||
import { sendToken } from './mailer'
|
||||
|
||||
if (process.env.NODE_ENV === 'development') require('dotenv').config()
|
||||
|
||||
const checkRightsAndResolve: CheckRightsAndResolve = async (params) => {
|
||||
const { user, expected, controller } = params
|
||||
|
||||
|
@ -1,5 +1,7 @@
|
||||
import sgMail from '@sendgrid/mail'
|
||||
|
||||
if (process.env.NODE_ENV === 'development') require('dotenv').config()
|
||||
|
||||
sgMail.setApiKey('' + process.env.SENDGRID_API_KEY)
|
||||
|
||||
const sendToken = (username: string, email: string, token: string) => {
|
||||
|
@ -6,6 +6,8 @@ import { ApolloContextType, JwtPayloadType } from './types'
|
||||
import { ApolloServer, makeExecutableSchema } from 'apollo-server-express'
|
||||
import { PrismaClient } from '@prisma/client'
|
||||
|
||||
if (process.env.NODE_ENV === 'development') require('dotenv').config()
|
||||
|
||||
const app = express()
|
||||
|
||||
app.use(
|
||||
|
Loading…
x
Reference in New Issue
Block a user