Skip to content

Web UI to explore and normalize Redump metadata with fast search, filters, and exports.

Notifications You must be signed in to change notification settings

official-markus-maurer/ReRedump

Repository files navigation

A reimplementation of redump.org using the 2009 source code

Project Setup

Herd provides a native Laravel development environment for macOS and Windows.

  1. Install development dependencies:

    herd install [email protected]
    herd install node
  2. Clone the repository:

    git clone https://github.com/RyuuSlayer/ReRedump.git
    cd ReRedump
  3. Set up your development environment:

    herd park ReRedump
  4. Set up MariaDB:

    • Download and install MariaDB
    • Start the MariaDB service
  5. 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=
  6. Install dependencies and build assets:

    composer install
    npm install
  7. Set up the application:

    php artisan key:generate
    php artisan migrate --seed
  8. 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.

Initial Login

After setting up the application, you can log in with the default admin account:

Important: Make sure to change the admin password after your first login for security purposes.

Additional Commands

  • 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

License has yet to be decided on.

About

Web UI to explore and normalize Redump metadata with fast search, filters, and exports.

Resources

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages