Skip to content

Installation Guide

Installation

To get started with the project, follow these steps:

  1. Clone the repository using the following command:

    Terminal window
    git clone https://github.com/Hixussss/gemstudy
  2. Install WAMP Server by following these steps:

    • Download the WAMP Server installer from the official website.
    • Run the installer and follow the on-screen instructions to complete the installation.
    • During the installation process, make sure to install all the necessary Microsoft distribution components that are required by WAMP Server.
    • Choose the version of WAMP Server that is compatible with your operating system.
  3. Once WAMP Server is installed, make sure to create a database named “gemstudy” in phpMyAdmin. To import the SQL file into the database, follow these steps:

    • Open phpMyAdmin in your web browser.
    • Select the “gemstudy” database from the left sidebar.
    • Click on the “Import” tab at the top of the page.
    • Click on the “Choose File” button and select the SQL file you want to import.
    • Click on the “Go” button to start the import process.
    • Wait for the import to complete, and you will see a success message once it’s done.
  4. Install Composer with the correct version of PHP. You can download Composer from the official website: https://getcomposer.org/.

To install Composer, follow these steps:

  • Download the Composer installer for your operating system.

  • Run the installer and follow the on-screen instructions to complete the installation.

  • Make sure to select the correct version of PHP that is compatible with your project.

  • After the installation is complete, you can verify that Composer is installed correctly by opening a command prompt or terminal and running the following command:

    Terminal window
    composer --version

    This command will display the installed version of Composer.

That’s it! Once Composer is installed, you can use it to manage the dependencies of your project.

It seems like you have just completed the installation part of your project. Now, it’s time to move on to the configuration phase.