How to Install Aureus ERP

Updated 23 May 2025

To get started with Aureus ERP, you have two options to obtain the source code from its GitHub repository. The first method is to download the ZIP file: click the green “Code” button on the repository page and choose “Download ZIP”.

After the download completes, extract the contents to your desired folder. Alternatively, if you’re using Visual Studio Code, you can clone the repository directly using the terminal. Open VS Code, press Ctrl + ~ to open the terminal, then run the command:

git clone https://github.com/aureuserp/aureuserp.git .

Create New Database

Using phpMyAdmin (GUI)

  1. Go to http://localhost/phpmyadmin
  2. Log in with your MySQL credentials.
  3. Click on the “New” tab.
  4. In the “Create database” field, create a database
  5. Click “Create” button.

After cloning or downloading the Aureus ERP project, open Visual Studio Code, then go to File > Open Folder and select the root folder of the aureuserp project.

Inside the project, locate the file named .env.example. This file contains example environment configurations.

Then open the file and scroll to the database configuration section. Uncomment (remove # if present) and edit the following lines to match your database setup:

Replace your_database_name, your_database_user, and your_database_password with your actual MySQL database credentials. This step is essential to connect to your database during Installation and Runtime.

After configuring the .env.example file for database connection, you can run the following command in the Visual Studio Code terminal to set up the Laravel based Aureus ERP project:

composer create-project

When this command is executed, Composer installs the Laravel application along with all necessary dependencies. As a result, two important components are generated in your project directory:

  1. .env File
    This environment file holds configuration settings such as database connection details, app URL, and mail settings. If it wasn’t already created manually, Laravel will generate it during project setup by copying from .env.example.
  2. vendor/ Directory
    This folder contains all the PHP dependencies required by Laravel and the Aureus ERP application. It is generated by Composer and includes packages like the Laravel framework, routing, database ORM, and more.

These components are critical for running and customizing the Aureus ERP application on your local development environment.

Install Aureus ERP

Now run the below command.

  1. php artisan erp:install

After running the command php artisan erp:install in the terminal, the installation process will begin, setting up the database and seeding necessary data.

Enter initial user credentials that will be used to create the first admin account. Includes:

These details are stored in the database and are used for the first login after installation.

Once everything completes successfully, you will see a message displayed in the terminal saying:
“Installation is successful”.

This message indicates that Aureus ERP has been installed correctly and is ready for use.

2. php artisan serve

After successfully installing Aureus ERP, you can start the development server by running the following command in your project directory terminal to make an environment on the local server.

php artisan serve

This command launches Laravel’s built-in PHP development server, Accessible at http://localhost:8000. You can open this URL in your web browser to access and test the Aureus ERP application locally.

The server will keep running until you stop it manually by pressing Ctrl + C in the terminal.

Frontend

Enter your username and password to access the dashboard. Use the default credentials provided during installation or the ones created via database seeding.

Email: [email protected]  
Password: password

Once entered, click Sign-in to access the Aureus ERP system interface

The default landing page will display the Dashboard along with access to the Settings module only. This limited view is typically due to initial role permissions set during the installation.

Congratulations! You have successfully installed and launched the Aureus ERP system on your local machine.

With the development server running, you can now access the ERP dashboard, explore its features, and begin customizing it to fit your business needs.

Installable Plugin

Installable plugins are optional modules or extensions that can be added to the core Aureus ERP system to enhance functionality without altering the main codebase.

These plugins allow businesses to customize the ERP to their specific needs—such as adding features for payroll, CRM, inventory, or POS systems.

Typically, plugins are uploaded through the admin panel , then activated via the Settings . This modular approach keeps the system flexible, scalable, and easy to maintain

These plugin can be installed as needed to extend system functionality:

ModuleDescription
BlogsManage blogs
AccountsFinancial accounting and reporting
ContactsContact management for customers and vendors
EmployeesEmployees management
InventoriesInventory and warehouse management
InvoicesInvoice generation and management
PartnersPartner relationship management
PaymentsPayment processing and tracking
ProductsProduct catalog and management
ProjectsProject planning and management
PurchasesProcurement and purchase order management
RecruitmentsApplicant tracking and hiring
SalesSales pipeline and opportunity management
TimeoffsLeave management and tracking
TimesheetEmployee work hour tracking
WebsiteWebsite for customer

Installation and Management

Installing a Plugin

Syntax:- php artisan <plugin-name>:install

Thanks for reading this blog. Please comment below if you have any questions or

Hope it will be helpful for you or if you have any issues feel free to raise a ticket at our Support Portal

. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Tell us about Your Company




    success-logo

    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home