This guide will help you set up the HR3 project, setting up MySQL as the database, and importing the initial data.
- MySQL (8.0+)
- Access to the
hr3.sqlfile ( backup folder)
git clone https://github.com/chessdotdev/hr3.git
If you don't have MySQL installed, download it here and follow the installation instructions for your operating system.
Before importing, make sure that the hr3.sql file is available in your project’s backup folder.
Follow these steps to import the database into MySQL using phpMyAdmin:
- Make sure MySQL and phpMyAdmin are installed and running on your system.
- Open phpMyAdmin (usually available at
http://localhost/phpmyadmin). - Click on the Databases tab at the top.
- Create a new database named
hr3. - After creating it, select the
hr3database from the sidebar. - Open the Import tab in the top menu.
- Click the Choose File button and select the
hr3.sqlfile from your project folder. - Scroll down and click Go to start the import process.
- Once the import is complete, you’ll see all the tables and data under the
hr3database.