Skip to content

Commit

Permalink
Merge pull request #76 from mokletdev/staging
Browse files Browse the repository at this point in the history
change email from smtp to google API
  • Loading branch information
teguhbayu committed May 20, 2024
2 parents c59937a + 6f51211 commit f370df5
Show file tree
Hide file tree
Showing 16 changed files with 338 additions and 61 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ jobs:
echo 'NEXTAUTH_SECRET=${{secrets.NEXTAUTH_SECRET}}' >> /home/mokletdev/actions-runner/_work/antareja/antareja/.env.local
echo 'CLOUDINARY_URL=${{secrets.CLOUDINARY_URL}}' >> /home/mokletdev/actions-runner/_work/antareja/antareja/.env.local
echo 'NEXTAUTH_URL=${{secrets.NEXTAUTH_URL}}' >> /home/mokletdev/actions-runner/_work/antareja/antareja/.env.local
echo 'GOOGLE_APP_PASSWORD=${{secrets.GOOGLE_APP_PASSWORD}}' >> /home/mokletdev/actions-runner/_work/antareja/antareja/.env.local
echo 'GOOGLE_EMAIL=${{secrets.GOOGLE_EMAIL}}' >> /home/mokletdev/actions-runner/_work/antareja/antareja/.env.local
echo 'GOOGLE_CLIENT_ID=${{secrets.GOOGLE_CLIENT_ID}}' >> /home/mokletdev/actions-runner/_work/antareja/antareja/.env.local
echo 'GOOGLE_CLIENT_SECRET=${{secrets.GOOGLE_CLIENT_SECRET}}' >> /home/mokletdev/actions-runner/_work/antareja/antareja/.env.local
echo 'GOOGLE_REFRESH_TOKEN=${{secrets.GOOGLE_REFRESH_TOKEN}}' >> /home/mokletdev/actions-runner/_work/antareja/antareja/.env.local
- name: Install Modules
run: npm ci
- name: Generate prisma
Expand Down
6 changes: 4 additions & 2 deletions global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ declare global {
NEXTAUTH_URL: string;
CLOUDINARY_URL: string;
DATABASE_URL: string;
GOOGLE_APP_PASSWORD: string;
GOOGLE_EMAIL: string;
GOOGLE_CLIENT_ID: string;
GOOGLE_CLIENT_SECRET: string;
GOOGLE_REDIRECT_URI: string;
GOOGLE_REFRESH_TOKEN: string;
}
}
}
Loading

0 comments on commit f370df5

Please sign in to comment.