If you're a developer, it's important to have a portfolio that showcases your skills and experience. It may not be enough to simply show off your code—you'll need to share more about what you've done and why it's impressive. This a portfolio website built with React, Prisma and NestJS.
This project's front-end is generated with ❤️ from Dhiwise.
This project has 2 sub-folders - frontend and backend.
-
Frontend
All the design has been generated with tailwindcss. Find all the theme related configuration inside tailwind.config.js
This project was bootstrapped with Create React App.
This project is integrated with a Tailwind CSS setup, a new utility-first css framework, in an CRA environment. You can read more over on Getting Started with Tailwind.
Figma: https://www.figma.com/file/7rSTh3w3EF5XVvEbi8BYeA/Portfolio?node-id=4%3A1630
-
Backend
For the backend, Prisma and NestJs is used.
Prisma is next-generation Node.js and TypeScript ORM used to Perform database operations. For this project, SQLite database is used to store and retrieve data using Prisma.
NestJs A progressive Node.js framework for building efficient, reliable and scalable server-side applications. For this project a backend server, accessible through REST APIs to store and retrieve data from the database.
In this portfolio, following sections are covered.
- Basic Information with resume download
- Skills
- Services
- Price Plans
- Recommendations
- Education
- Work History
- Portfolio
- Medium Blogs
- Contact
- Nodejs version >= 14
- NestJs version >= 9
- Prisma version >=4
Front-end runs on port:3000 and backend runs on port:8081.
- from the root
cd portfolio-frontend && npm i
- from the root
cd portfolio-backend && npm i
- create .env with variable
DATABASE_URL="file:folio.db"
file inportfolio-backend
folder and runnpx prisma generate
when you are running the project for the first time. - from the root
npm start
Note: This project is setup in such a way that you can start the server and client from the root folder using
npm start
├── portfolio
│ ├── portfolio-frontend --- client
│ ├── portfolio-backend --- server
├── package.json
├── README.md
Detailed folder structure is inside the readme of respective folder.
MIT License Copyright (c) 2022 DhiWise
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.