Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,6 @@ next-env.d.ts
detaileplans.md
detail.md


/src/generated/prisma
AUTH_SETUP.md
25 changes: 23 additions & 2 deletions env.example
Original file line number Diff line number Diff line change
@@ -1,9 +1,30 @@
# GitHub API Configuration
GITHUB_TOKEN=
REPO_TOKEN=
GITHUB_APP_ID=
GITHUB_APP_PRIVATE_KEY=
GITHUB_CLINET_ID=

# Next.js Configuration
NEXT_PUBLIC_APP_NAME=GitIntel
NEXT_PUBLIC_APP_DESCRIPTION=Analyze competition in open source GitHub projects
NEXT_PUBLIC_APP_DESCRIPTION=Analyze competition in open source GitHub projects

# Database Configuration
DATABASE_URL=

# NextAuth.js Configuration
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=

# OAuth Providers
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=

GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=

# Email Service (Resend)
RESEND_API_KEY=
[email protected]

# App Configuration
NEXT_PUBLIC_APP_URL=http://localhost:3000
20 changes: 20 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,26 @@ const eslintConfig = [
"@typescript-eslint/no-explicit-any": "warn",
},
},
{
files: ["src/generated/**/*"],
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/prefer-as-const": "off",
"@typescript-eslint/no-empty-object-type": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-unsafe-function-type": "off",
"@typescript-eslint/no-unnecessary-type-constraint": "off",
"@typescript-eslint/no-wrapper-object-types": "off",
"@typescript-eslint/no-unsafe-function-type": "off",
"prefer-const": "off",
"no-var": "off",
},
},
];

export default eslintConfig;
18 changes: 18 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,24 @@ const nextConfig: NextConfig = {
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'lh3.googleusercontent.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'googleusercontent.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: '*.googleusercontent.com',
port: '',
pathname: '/**',
},
],
},
};
Expand Down
17 changes: 16 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,40 @@
"lint": "next lint"
},
"dependencies": {
"@auth/prisma-adapter": "^2.10.0",
"@hookform/resolvers": "^5.1.1",
"@neondatabase/serverless": "^1.0.1",
"@octokit/auth-app": "^8.0.1",
"@octokit/graphql": "^9.0.1",
"@octokit/rest": "^21.1.1",
"@prisma/client": "^6.10.1",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@types/nodemailer": "^6.4.17",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"lucide-react": "^0.511.0",
"next": "15.3.2",
"next-auth": "^4.24.11",
"nodemailer": "^7.0.3",
"prisma": "^6.10.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.58.1",
"react-icons": "^5.5.0",
"recharts": "^2.15.3",
"resend": "^4.6.0",
"tailwind-merge": "^3.3.0",
"vaul": "^1.1.2"
"vaul": "^1.1.2",
"zod": "^3.25.67"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
Expand Down
Loading
Loading