Fullstack Template
A complete portfolio solution with CMS capabilities.
Features
Built with modern technologies for a powerful portfolio experience
MongoDB + Prisma
Robust data storage and type-safe queries
Kinde Auth
Secure authentication system
Uploadthing
Easy file uploads for projects
Admin Access Configuration
Important: Update the admin email for dashboard access
⚠️ The admin email is currently hardcoded! Move it to the environment variables for security.
How to update the admin email in VS Code:
- Open VS Code.
- Press
Ctrl + Shift + F
(Windows/Linux) orCmd + Shift + F
(Mac) to open the search panel. - Search for
kutbuddinkhan82@gmail.com
. - Replace it with your own email.
- Save the file and restart the application if needed.
Environment Setup
.env.local
1# MongoDB Connection
2DATABASE_URL="your_mongodb_connection_string"
3
4# Kinde Auth Configuration
5KINDE_CLIENT_ID="your_kinde_client_id"
6KINDE_CLIENT_SECRET="your_kinde_client_secret"
7KINDE_ISSUER_URL="your_kinde_issuer_url"
8KINDE_SITE_URL="your_site_url"
9KINDE_POST_LOGIN_REDIRECT_URL="your_site_url/dashboard"
10KINDE_POST_LOGOUT_REDIRECT_URL="your_site_url"
11
12# Uploadthing Configuration
13UPLOADTHING_SECRET="your_uploadthing_secret"
14UPLOADTHING_APP_ID="your_uploadthing_app_id"
15
16# Admin Access
17ADMIN_EMAIL="your_email@example.com" # Important: Update this!
Database Connection

Authentication Setup

Uploadthing Configuration
