Skip to content

Vetaxon/lara-sandi-plus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#TASK https://b2b-sandi.com.ua/api/products

Создать каталог товаров. Реализовать простейший вывод списка товаров и карточки товара с характеристиками.

Требования: Laravel последней версии. Написать метод, который импортирует данные полученные по ссылке в базу. Мультиязычность. Характеристики. Проект разместить в репозитории bitbucket

Описание: Необходимо реализовать две страницы, верстка не обязательна (достаточно элементарной разметки). 1 страница: Должна быть кнопка стянуть проект, по нажатию на которую отрабатывает метод импорта и выводятся товары с ссылками на их карточки. 2 страница: Карточка товара с характеристиками. Кнопка переключения языковой версии на всех страницах.

docker-compose-laravel

A pretty simplified docker-compose workflow that sets up a LEMP network of containers for local Laravel development. You can view the full article that inspired this repo here.

Usage

To get started, make sure you have Docker installed on your system, and then clone this repository.

First add your entire Laravel project to the src folder, then open a terminal and from this cloned respository's root run docker-compose up -d --build. Open up your browser of choice to http://localhost:8080 and you should see your Laravel app running as intended. Your Laravel app needs to be in the src directory first before bringing the containers up, otherwise the artisan container will not build, as it's missing the appropriate file.

New: Three new containers have been added that handle Composer, NPM, and Artisan commands without having to have these platforms installed on your local computer. Use the following command templates from your project root, modifiying them to fit your particular use case:

  • docker-compose run --rm composer update
  • docker-compose run --rm npm run dev
  • docker-compose run --rm artisan migrate

Containers created and their ports (if used) are as follows:

  • nginx - :8080
  • mysql - :3306
  • php - :9000
  • npm
  • composer
  • artisan

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published