Base Skeleton is a CMS made with Laravel 5.3 and running on Docker which supports the following functions:
Product
andArticle
(blog post) management.- Classify
Products
andArticles
byCategories
angTags
. - Social authentication and interaction integrated (support login, like, share and comment with Facebook).
Cart
andOrder
management forProduct
.Rating
andReview
management forArticle
.
- Docker
- Docker Compose
- Go to project's
laradock
folder withcd laradock
on your terminal. - Run
docker-compose up -d
to setup server's stacks. - Run
docker exec -it --user=laradock laradock_workspace_1 bash
to login theworkspace
container. - Run
composer install
to install PHP dependencies. - Run
php artisan migrate --seed
to create database schema and seed some default data. - Run
npm i
to install Javascript dependencies. If you're on Docker for Windows or a guest VM with Windows host, run the command above with--no-bin-links
attribute.
- Go to
laradock
folder. - Run
docker-compose up -d
to start server. - Link to CMS page:
http://{ip_address}:8000/cms
, with credentials:admin
/admin
.