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

New #213

Closed
wants to merge 4 commits into from
Closed

New #213

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
31 changes: 16 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,23 @@ on:
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20'

- name: Install Dependencies
run: npm install

- name: Generate prisma client
run: npm run db:generate

- name: Run Build
run: npm run build
-uses: action/checkout@v3
-name: Use Node.js
uses: action/setup-node@v3
with:
node-version: '20'

-name: Install dependencies
run: npm install

-name: Generate prisma client
run: npm run db:generate

-name: Run build
run: npm run dev

42 changes: 0 additions & 42 deletions .github/workflows/deploy.yml

This file was deleted.

7 changes: 4 additions & 3 deletions apps/user-app/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import { getServerSession } from "next-auth";
import { redirect } from 'next/navigation'
import { redirect } from "next/navigation";
import { authOptions } from "./lib/auth";

export default async function Page() {
console.log("asdf");
const session = await getServerSession(authOptions);
if (session?.user) {
redirect('/dashboard')
redirect("/dashboard");
} else {
redirect('/api/auth/signin')
redirect("/api/auth/signin");
}
}
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"db:generate": "cd packages/db && npx prisma generate && cd ../..",
"start-user-app": "cd ./apps/user-app && npm run start"

"start-user-app": "cd ./apps/user-app && npm run start",
"db:generate": "cd packages/db && npx prisma generate && cd ../.."
},
"devDependencies": {
"@repo/eslint-config": "*",
Expand Down