- PHP 8^
- Apache 2
- Laravel 8^
- Composer
- Node JS
- Mysql
- Git
- Clone the source code to your machine
git clone https://github.com/EleaFederio/mis_mini_post_backend.git
- go to project directory
cd mis_mini_post_backend
- install dependencies using composer
composer install
- create .env file
copy .env.example .env
- generate app key
php artisan key:generate
- create a table name
mis_pos
in your database. - in you .env file find
DB_DATABASE
and set it to "mis_pos". DB_TABLE need to be same as the database you create in step 5
DB_DATABASE=mis_pos
- generate migration (Make sure your database running)
php artisan migrate
- seed a data (this is data for branches and categories)
php artisan db:seed
- run the system
php artisan serve
- if there is no conflict with you network you can find the API running at localhost:8000
- Install the Front End