Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shubham/brach1 #415

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

jobs:
build:
name: Build the Project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -17,9 +18,9 @@ jobs:

- name: Install Dependencies
run: npm install
- name: Generate prisma client
run: npm run db:generate

- name: Generate Prisma Client
run : npm run db:generate

- name: Run Build
run: npm run build
18 changes: 3 additions & 15 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,9 @@ jobs:
uses: docker/build-push-action@v2
with:
context: .
file: ./docker/Dockerfile.user
file: ./Dockerfile
push: true
tags: 100xdevs/week-18-class:latest # Replace with your Docker Hub username and repository
tags: reconop/week-18-class:latest # Replace with your Docker Hub username and repository

- name: Verify Pushed Image
run: docker pull 100xdevs/week-18-class:latest # Replace with your Docker Hub username and repository

- name: Deploy to EC2
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_KEY }}
script: |
sudo docker pull 100xdevs/week-18-class:latest
sudo docker stop web-app || true
sudo docker rm web-app || true
sudo docker run -d --name web-app -p 3005:3000 100xdevs/week-18-class:latest
run: docker pull reconop/week-18-class:latest # Replace with your Docker Hub username and repository
3 changes: 3 additions & 0 deletions apps/user-app/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ import { getServerSession } from "next-auth";
import { redirect } from 'next/navigation'
import { authOptions } from "./lib/auth";




export default async function Page() {
const session = await getServerSession(authOptions);
if (session?.user) {
Expand Down
Loading