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 .
Using phpMyAdmin (GUI)
http://localhost/phpmyadmin
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:
aureuserp
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:
.env
File.env.example
.vendor/
DirectoryThese components are critical for running and customizing the Aureus ERP application on your local development environment.
Now run the below command.
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.
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 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:
Module | Description |
---|---|
Blogs | Manage blogs |
Accounts | Financial accounting and reporting |
Contacts | Contact management for customers and vendors |
Employees | Employees management |
Inventories | Inventory and warehouse management |
Invoices | Invoice generation and management |
Partners | Partner relationship management |
Payments | Payment processing and tracking |
Products | Product catalog and management |
Projects | Project planning and management |
Purchases | Procurement and purchase order management |
Recruitments | Applicant tracking and hiring |
Sales | Sales pipeline and opportunity management |
Timeoffs | Leave management and tracking |
Timesheet | Employee work hour tracking |
Website | Website for customer |
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
Tell us about Your Company
If you have more details or questions, you can reply to the received confirmation email.
Back to Home
Be the first to comment.