A modern, full-stack portfolio website built with Laravel and React/TypeScript and Inertia.
-
Backend:
- Laravel 12.x
- PHP 8.x
- MySQL
-
Frontend:
- React
- TypeScript
- Vite
- Tailwind CSS
- Modern VS Code clone
- Server-side rendering
- Type-safe development with TypeScript
- Modern UI components
- RESTful API architecture
Before you begin, ensure you have the following installed:
- PHP 8.x
- Composer
- Node.js (16.x or higher)
- npm or yarn
- MySQL
- Clone the repository:
git clone <your-repository-url>
cd portfolio- Install PHP dependencies:
composer install- Install Node.js dependencies:
npm install
# or
yarn install- Environment setup:
cp .env.example .env
php artisan key:generate- Configure your database in the
.envfile:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_database_name
DB_USERNAME=your_username
DB_PASSWORD=your_password- Run database migrations:
php artisan migrate- Start the Laravel development server:
php artisan serve- Start the Vite development server:
npm run dev
# or
yarn dev- Star both
# or
composer run devThe application will be available at http://localhost:8000
- Build the frontend assets:
npm run build
# or
yarn build- Configure your production environment variables in
.env
If you discover any security-related issues, please name [Kuuhaku] instead of using the issue tracker.