A full-stack portfolio website built with React (frontend) and Node.js/Express (backend).
Portfolio-Website/
├── backend/ # Node.js/Express backend API
│ ├── src/ # Source files (controllers, models, routes)
│ ├── .env.example # Template for backend environment variables
│ └── package.json # Backend dependencies and scripts
├── frontend/ # React frontend application
│ ├── src/ # Source files (components, pages, sections)
│ ├── .env.example # Template for frontend environment variables
│ ├── index.html # HTML entry point
│ └── package.json # Frontend dependencies and scripts
├── .gitignore # Git ignore settings
└── README.md # Project documentation
cd backend
npm install
.env.example to .env and fill in your configuration:
cp .env.example .env
npm start
cd frontend
npm install
.env.example to .env and fill in your configuration:
cp .env.example .env
npm run dev