Program requires Laravel v7.x to run.
Donwload and install the Laradocker and start the server containers.
cd dillinger
git clone https://github.com/Laradock/laradock.git
cp .env.example .env
docker-compose up nginx mysql workspace
- To enter the workspace container and run the php commands
docker ps
- Get the workspace container id
docker exec -ti <id_container> sh -c /bin/sh
For start the Laravel for the first time...
composer update
php artisan key:generate
php artisan serve
For create table and insert rows from JSON file
php artisan migrate
php artisan db:seed --class=AffiliateSeeder
The Program is currently extended with the following plugins. Instructions on how to use them in your own application are linked below.
Plugin | WebSite |
---|---|
Boostrap V5.x | [https://getbootstrap.com/docs/5.0/] |
Victor Luis dos Santos