Skip to main content
This guide provides step-by-step instructions to install and set up the private Velure repository.

Prerequisites

Before starting, ensure you have the following installed on your system:
  • Git
  • Composer (for PHP dependencies)
  • Node.js and npm (for JavaScript dependencies)

Cloning the Repository

  1. Open your terminal or command prompt.
  2. Clone the repository using the following command:
git clone [email protected]:velurelabs/velure.git
  1. Navigate into the project directory:
cd velure

Installing Dependencies

1. Install PHP Dependencies

Run the following command to install PHP dependencies:
composer install

Troubleshooting Composer Errors

If you encounter issues with composer install, locate the repositories section in the composer.json file and remove the following snippet:
{
    "type": "path",
    "url": "./velure-cms",
    "options": {
        "symlink": true
    }
}
After making this change, save the composer.json file and re-run:
composer install

2. Install JavaScript Dependencies

Run the following command to install the JavaScript dependencies:
npm install

Final Steps

After completing the steps above, the repository should be fully set up and ready for development or deployment. For further assistance, contact the repository maintainers or refer to the project documentation.