Getting Started
Follow these steps to set up your PortfoHub template
Prerequisites
⚡
Node.js
v18.0.0 or higher
📦
npm
v8.0.0 or higher
🔄
Git
Latest version
💻
Code Editor
VS Code (recommended)
Installation Steps
01 Clone the Repository
Terminal
1git clone https://github.com/your-username/portfohub-template.git
02 Initialize Git Repository
After cloning, initialize your own Git repository:
Terminal
1# Navigate to project directory
2cd portfohub-template
3
4# Remove existing git history
5rm -rf .git
6
7# Initialize new git repository
8git init
9
10# Add all files to new repository
11git add .
12
13# Create initial commit
14git commit -m "Initial commit"
15
16# Add your remote repository
17git remote add origin https://github.com/your-username/your-portfolio.git
18
19# Push to your repository
20git push -u origin main
03 Install & Start
Terminal
1# Install dependencies
2npm install
3
4# Start development server
5npm run dev
Make sure to update all configuration files and environment variables before deploying to production.
VS Code Setup
