Herd provides a native Laravel development environment for macOS and Windows.
-
Install development dependencies:
herd install [email protected] herd install node
-
Clone the repository:
git clone https://github.com/RyuuSlayer/ReRedump.git cd ReRedump -
Set up your development environment:
herd park ReRedump
-
Set up MariaDB:
- Download and install MariaDB
- Start the MariaDB service
-
Copy the example environment file and configure it:
cp .env.example .env
Update the database credentials in
.env:DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=reredump DB_USERNAME=root DB_PASSWORD=
-
Install dependencies and build assets:
composer install npm install
-
Set up the application:
php artisan key:generate php artisan migrate --seed
-
Start the development servers:
# Terminal 1: Start Laravel server php artisan serve # Terminal 2: Start Vite dev server with hot reload npm run dev
Now you can access the application at http://localhost:8000. Any changes to CSS or JavaScript will automatically reload in your browser.
After setting up the application, you can log in with the default admin account:
- Email:
[email protected] - Password:
password
Important: Make sure to change the admin password after your first login for security purposes.
-
Clear the application cache:
php artisan optimize:clear
-
Refresh the database with fresh seed data:
php artisan migrate:fresh --seed
-
Watch for changes and automatically refresh CSS:
npm run dev
License has yet to be decided on.