Folder Structure
Portfolio Website /
.
├── bun.lockb
├── CODE_OF_CONDUCT.md
├── components.json
├── docker-compose.yaml
├── Dockerfile
├── jsconfig.json
├── LICENSE
├── next.config.mjs
├── next-env.d.ts
├── package.json
├── postcss.config.mjs
├── prisma
│ ├── migrations
│ │ ├── 20240919213038_init
│ │ │ └── migration.sql
│ │ ├── 20240919213630_adding_user
│ │ │ └── migration.sql
│ │ ├── 20240919223806_adding_all_filed
│ │ │ └── migration.sql
│ │ ├── 20240919230257_adding_techstack_model
│ │ │ └── migration.sql
│ │ ├── 20240920012045_adding_fixed
│ │ │ └── migration.sql
│ │ ├── 20240924163632_adding_extending_user
│ │ │ └── migration.sql
│ │ ├── 20240925150741_adding_user_profile
│ │ │ └── migration.sql
│ │ ├── 20241002234053_adding_user_role
│ │ │ └── migration.sql
│ │ ├── 20241014142736_modified_database_with_user
│ │ │ └── migration.sql
│ │ └── migration_lock.toml
│ └── schema.prisma
├── public
│ ├── blur-23.svg
│ ├── education.png
│ ├── experience.png
│ ├── favicon.ico
│ ├── hero.png
│ ├── hero.svg
│ ├── logo.png
│ ├── lottie
│ │ ├── build.json
│ │ ├── code1.json
│ │ ├── code.json
│ │ ├── coding.json
│ │ ├── contact.json
│ │ ├── development.json
│ │ ├── education.json
│ │ ├── js.json
│ │ ├── lotti.json
│ │ └── study.json
│ ├── mascot.jpeg
│ ├── next.svg
│ ├── placeholder.jpg
│ ├── project.png
│ ├── section.svg
│ ├── svg
│ │ ├── contactsImage.svg
│ │ ├── education
│ │ │ ├── eduBlack.svg
│ │ │ ├── eduBlue.svg
│ │ │ ├── eduGreen.svg
│ │ │ ├── eduImgBlack.svg
│ │ │ ├── eduImgWhite.svg
│ │ │ ├── eduOrange.svg
│ │ │ ├── eduPink.svg
│ │ │ ├── eduPurple.svg
│ │ │ ├── eduRed.svg
│ │ │ ├── eduTwitter.svg
│ │ │ └── eduYellow.svg
│ │ ├── experience
│ │ │ ├── expBlack.svg
│ │ │ ├── expBlue.svg
│ │ │ ├── expGreen.svg
│ │ │ ├── expImgBlack.svg
│ │ │ ├── expImgWhite.svg
│ │ │ ├── expOrange.svg
│ │ │ ├── expPink.svg
│ │ │ ├── expPurple.svg
│ │ │ ├── expRed.svg
│ │ │ ├── expTwitter.svg
│ │ │ └── expYellow.svg
│ │ ├── projects
│ │ │ ├── eight.svg
│ │ │ ├── eleven.svg
│ │ │ ├── five.svg
│ │ │ ├── four.svg
│ │ │ ├── nine.svg
│ │ │ ├── one.svg
│ │ │ ├── sample.svg
│ │ │ ├── seven.svg
│ │ │ ├── six.svg
│ │ │ ├── ten.svg
│ │ │ ├── thirteen.svg
│ │ │ ├── three.svg
│ │ │ ├── twelve.svg
│ │ │ └── two.svg
│ │ └── skills
│ │ ├── adobeaudition.svg
│ │ ├── adobe-xd.svg
│ │ ├── after-effects.svg
│ │ ├── angular.svg
│ │ ├── aws.svg
│ │ ├── azure.svg
│ │ ├── blender.svg
│ │ ├── bootstrap.svg
│ │ ├── bulma.svg
│ │ ├── canva.svg
│ │ ├── capacitorjs.svg
│ │ ├── coffeescript.svg
│ │ ├── cplusplus.svg
│ │ ├── csharp.svg
│ │ ├── css.svg
│ │ ├── c.svg
│ │ ├── dart.svg
│ │ ├── deno.svg
│ │ ├── django.svg
│ │ ├── docker.svg
│ │ ├── fastify.svg
│ │ ├── figma.svg
│ │ ├── firebase.svg
│ │ ├── flutter.svg
│ │ ├── gcp.svg
│ │ ├── gimp.svg
│ │ ├── git.svg
│ │ ├── go.svg
│ │ ├── graphql.svg
│ │ ├── haxe.svg
│ │ ├── html.svg
│ │ ├── illustrator.svg
│ │ ├── ionic.svg
│ │ ├── javascript.svg
│ │ ├── java.svg
│ │ ├── julia.svg
│ │ ├── kotlin.svg
│ │ ├── lightroom.svg
│ │ ├── markdown.svg
│ │ ├── materialui.svg
│ │ ├── matlab.svg
│ │ ├── memsql.svg
│ │ ├── microsoftoffice.svg
│ │ ├── mongoDB.svg
│ │ ├── mysql.svg
│ │ ├── nextJS.svg
│ │ ├── nginx.svg
│ │ ├── numpy.svg
│ │ ├── nuxtJS.svg
│ │ ├── opencv.svg
│ │ ├── photoshop.svg
│ │ ├── php.svg
│ │ ├── picsart.svg
│ │ ├── postgresql.svg
│ │ ├── premierepro.svg
│ │ ├── python.svg
│ │ ├── pytorch.svg
│ │ ├── react.svg
│ │ ├── ruby.svg
│ │ ├── selenium.svg
│ │ ├── sketch.svg
│ │ ├── sqlite.svg
│ │ ├── strapi.svg
│ │ ├── svelte.svg
│ │ ├── swift.svg
│ │ ├── tailwind.svg
│ │ ├── tensorflow.svg
│ │ ├── typescript.svg
│ │ ├── unity.svg
│ │ ├── vitejs.svg
│ │ ├── vue.svg
│ │ ├── vuetifyjs.svg
│ │ ├── webix.svg
│ │ ├── wolframalpha.svg
│ │ └── wordpress.svg
│ └── vercel.svg
├── README.Docker.md
├── README.md
├── scripts
│ └── seed.ts
├── SECURITY.md
├── src
│ ├── actions
│ │ ├── get-current-user.ts
│ │ ├── get-project.ts
│ │ ├── login.ts
│ │ ├── register.ts
│ │ └── verification.ts
│ ├── app
│ │ ├── (admin)
│ │ │ └── admin
│ │ │ ├── columns.tsx
│ │ │ ├── data-table.tsx
│ │ │ ├── page.tsx
│ │ │ └── projects
│ │ │ ├── _components
│ │ │ │ ├── action.tsx
│ │ │ │ ├── image-form.tsx
│ │ │ │ ├── link-form.tsx
│ │ │ │ ├── project-upate.tsx
│ │ │ │ └── tech-stack.tsx
│ │ │ ├── page.tsx
│ │ │ └── [projectId]
│ │ │ └── page.tsx
│ │ ├── api
│ │ │ ├── admin
│ │ │ │ ├── create
│ │ │ │ │ └── route.ts
│ │ │ │ └── projects
│ │ │ │ └── [projectId]
│ │ │ │ ├── publish
│ │ │ │ │ └── route.ts
│ │ │ │ ├── route.ts
│ │ │ │ └── unpublish
│ │ │ │ └── route.ts
│ │ │ ├── auth
│ │ │ │ └── [...nextauth]
│ │ │ │ └── route.ts
│ │ │ └── uploadthing
│ │ │ ├── core.ts
│ │ │ └── route.ts
│ │ ├── auth
│ │ │ ├── confirm
│ │ │ │ └── page.tsx
│ │ │ ├── error
│ │ │ │ └── page.tsx
│ │ │ ├── layout.tsx
│ │ │ ├── login
│ │ │ │ └── page.tsx
│ │ │ └── register
│ │ │ └── page.tsx
│ │ ├── education
│ │ │ ├── _components
│ │ │ │ └── education.tsx
│ │ │ └── page.tsx
│ │ ├── experience
│ │ │ ├── _components
│ │ │ │ └── experience.tsx
│ │ │ └── page.tsx
│ │ ├── fonts
│ │ │ ├── GeistMonoVF.woff
│ │ │ └── GeistVF.woff
│ │ ├── globals.css
│ │ ├── layout.tsx
│ │ ├── page.tsx
│ │ ├── projects
│ │ │ ├── _components
│ │ │ │ ├── project-card.tsx
│ │ │ │ ├── project-list.tsx
│ │ │ │ ├── tech-stack-item.tsx
│ │ │ │ └── tech-stack.tsx
│ │ │ └── page.tsx
│ │ ├── skills
│ │ │ ├── _components
│ │ │ │ └── skills.tsx
│ │ │ └── page.tsx
│ │ └── style
│ │ ├── card.css
│ │ ├── card.css.map
│ │ └── card.scss
│ ├── auth.config.ts
│ ├── auth.ts
│ ├── components
│ │ ├── auth
│ │ │ ├── back-button.tsx
│ │ │ ├── card-wrapper.tsx
│ │ │ ├── confirm-form.tsx
│ │ │ ├── error-card.tsx
│ │ │ ├── github-logo.tsx
│ │ │ ├── google-logo.tsx
│ │ │ ├── header.tsx
│ │ │ ├── login-form.tsx
│ │ │ ├── register-form.tsx
│ │ │ ├── signIn-method-divider.tsx
│ │ │ └── social.tsx
│ │ ├── avatarImage.tsx
│ │ ├── banner.tsx
│ │ ├── container.tsx
│ │ ├── file-upload.tsx
│ │ ├── footer.tsx
│ │ ├── form-error.tsx
│ │ ├── form-sucess.tsx
│ │ ├── home
│ │ │ └── hero-section.tsx
│ │ ├── icon-badge.tsx
│ │ ├── loading.tsx
│ │ ├── logo.tsx
│ │ ├── mobile-sidebar.tsx
│ │ ├── modal
│ │ │ └── confirm-modal.tsx
│ │ ├── navbar-route.tsx
│ │ ├── navbar.tsx
│ │ ├── search-input.tsx
│ │ ├── sidebar-item.tsx
│ │ ├── sidebar-route.tsx
│ │ ├── sidebar.tsx
│ │ ├── ui
│ │ │ ├── alert-dialog.tsx
│ │ │ ├── avatar.tsx
│ │ │ ├── badge.tsx
│ │ │ ├── button.tsx
│ │ │ ├── card.tsx
│ │ │ ├── command.tsx
│ │ │ ├── dialog.tsx
│ │ │ ├── dropdown-menu.tsx
│ │ │ ├── form.tsx
│ │ │ ├── input.tsx
│ │ │ ├── label.tsx
│ │ │ ├── popover.tsx
│ │ │ ├── select.tsx
│ │ │ ├── sheet.tsx
│ │ │ ├── skeleton.tsx
│ │ │ ├── table.tsx
│ │ │ ├── toaster.tsx
│ │ │ └── toast.tsx
│ │ └── user-menu.tsx
│ ├── config
│ │ └── site.ts
│ ├── data
│ │ ├── account.ts
│ │ ├── educations.ts
│ │ ├── experience.ts
│ │ ├── personal-data.ts
│ │ ├── project.ts
│ │ ├── skills-image.js
│ │ ├── skills.ts
│ │ ├── user.ts
│ │ └── verification-token.ts
│ ├── helper
│ │ ├── animation-lottie.tsx
│ │ └── glow-card.tsx
│ ├── hooks
│ │ ├── use-current-role.ts
│ │ ├── use-current-user.ts
│ │ ├── use-debounce.ts
│ │ ├── use-mobile-sidebar.ts
│ │ └── use-toast.ts
│ ├── lib
│ │ ├── auth.ts
│ │ ├── db.ts
│ │ ├── mail.ts
│ │ ├── redis.ts
│ │ ├── tokens.ts
│ │ ├── uploadthing.ts
│ │ └── utils.ts
│ ├── middleware.ts
│ ├── next-auth.d.ts
│ ├── providers
│ │ ├── Providers.tsx
│ │ └── toast-provider.tsx
│ ├── routes.ts
│ └── schemas
│ └── index.ts
├── tailwind.config.ts
├── test-docker.sh
├── tsconfig.json
├── tsconfig.tsbuildinfo
└── UPGRADING.md
Table of Contents
EduStream is built using the following technologies:
- TypeScript: TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. development experience for modern web projects.
- React.js: React is a free and open-source front-end JavaScript library for building user interfaces or UI components.
- Three.js: Three.js is a cross-browser JavaScript library and application programming interface used to create and display animated 3D computer graphics in a web browser using WebGL.
- Framer Motion: Framer Motion is a production-ready motion library for React.
- Tailwind CSS: Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces.
- ESLint: ESLint is a static code analysis tool for identifying problematic patterns found in JavaScript code.
- Prettier: Prettier is an opinionated code formatter.
- Vercel: Vercel is a cloud platform for frontend developers, providing the frameworks, workflows, and infrastructure to build a faster, more personalized Web.
To get this project up and running in your development environment, follow these step-by-step instructions.
In order to install and run this project locally, you would need to have the following installed on your local machine.
Step 0:
Note that you can use either npm
or yarn
to run the scripts. In this guide, we will use npm
.
Setup clerk.dev account and get the required credentials to run the app.
Step 1:
Download or clone this repo by using the link below:
git clone https://github.com/abudusamad/portfoliowebsite.git
Step 2:
Execute the following command in the root directory of the downloaded repo in order to install dependencies:
npm install
Step 3:
Execute the following command in order to run the development server locally:
npm run dev
Step 4:
Open http://localhost:3000 with your browser to see the result.
All scripts are defined in the package.json
file. Here is a list of all scripts:
Script | Action |
---|---|
npm install |
Installs dependencies |
npm run dev |
Starts local dev server at localhost:3000 |
npm run build |
Build your production site to ./dist/ |
npm run preview |
Boot up a local static web server |
npm run lint |
Run ESLint |
npm run ts:check |
Perform type-checking |
Step 1:
docker-compose up
Step 2:
docker-compose exec app bash
Step 3:
npm run dev
Step 4:
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
Prisma is a modern database toolkit that makes database access easy with an auto-generated and type-safe query builder. It is used to interact with the database in this project.
To migrate the database, run the following command:
npx prisma migrate dev
To seed the database, run the following command:
node scripts/seed.ts
click here to view the prisma schema
You can use Prisma Studio to view and edit the data in your database. To open Prisma Studio, run the following command:
npx prisma studio
Environment variables can be used for configuration. They must be set before running the app.
Environment variables are variables that are set in the operating system or shell, typically used to configure programs.
Edustream uses EmailJS as external service. You need to create an account and get the required credentials to run the app.
Create a .env
file in the root directory of the project and add the following environment
variables:
DATABASE_URL=${DATABASE_URL}
UPLOADTHING_SECRET=${UPLOADTHING_SECRET}
UPLOADTHING_APP_ID=${UPLOADTHING_APP_ID}
NEXT_PUBLIC_APP_URL=http://localhost:3000
"
AUTH_SECRET=any_secret
advice to use a random string for the secret
such as `openssl rand -hex 32` if you have openssl installed on your system
AUTH_GITHUB_ID=${AUTH_GITHUB_ID}
AUTH_GITHUB_SECRET=${AUTH_GITHUB_SECRET}
AUTH_GOOGLE_ID=${AUTH_GOOGLE_ID}
AUTH_GOOGLE_SECRET=${AUTH_GOOGLE_SECRET}
REDIS_URL=redis://my_redis:6379
NEXTAUTH_URL=http://localhost:3000
NEXT_PUBLIC_URL=http://localhost:3000
RESEND_API_KEY=${RESEND_API_KEY}
REDIS_URL=${REDIS_URL}
You can create an optimized production build with the following command:
npm run build
The easiest way to deploy this Next.js app is to use the Vercel Platform.
You can also deploy this Next.js app with Netlify.
Check out Next.js deployment documentation for more details.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
To fix a bug or enhance an existing module, follow these steps:
- Fork the repo
- Create a new branch (
git checkout -b improve-feature
) - Make the appropriate changes in the files
- Commit your changes (
git commit -am 'Improve feature'
) - Push to the branch (
git push origin improve-feature
) - Create a Pull Request 🎉
I'd like to express my gratitude to the following people who helped me with this project and made it possible: