Serverus is a Retail Management System with a web-based user interface and relational database. It is used to process goods throughout the entire supply chain, from purchasing and production to end sales.
Things that are needed:
- PHP 8.0 and above
- Composer
Setup steps
-
Go to the directory of the designated project with the command-line.
-
Install the dependencies of the project ”composer install”.
-
Copy ".env.example" as ".env"
-
Change the following variables in the “.env” file.
a. DB_USERNAME - your username in your MySQL instance
b. DB_PASSWORD - your password in your MySQL instance
c. DB_DATABASE - the name of your database
d. STORE_NAME - the name of your store
e. INVENTORY_NAME - the name of your inventory
-
Turn on your mysql instance.
-
Run “php artisan migrate --seed”.
-
Generate an app key ”php artisan key:generate”
-
Run “php artisan serve” to serve the web application.