| Software | Version | Installation Guide |
|---|---|---|
| PHP | ≥ 8.2 | php.net |
| Composer | Latest | getcomposer.org |
| MySQL/PostgreSQL | ≥ 5.7 | mysql.com |
git clone https://github.com/ezzyraouy/AboutMe.gitcp .env.example .envConfigure these key variables in .env:
APP_URL=http://localhost:8000
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_db_name
DB_USERNAME=root
DB_PASSWORD=
composer install# Generate app key
php artisan key:generate
# Run migrations with seed
php artisan migrate --seed
# Clear the configuration and cache:
php artisan config:clear
php artisan cache:clearDefault test user created:
- Email: admin@admin.com
- Password: admin1234
Termina
php artisan serve