Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dpfaffenbauer/pimcore-skeleton
Pimcore Skeleton with Docker and Webpack
https://github.com/dpfaffenbauer/pimcore-skeleton
Last synced: 8 days ago
JSON representation
Pimcore Skeleton with Docker and Webpack
- Host: GitHub
- URL: https://github.com/dpfaffenbauer/pimcore-skeleton
- Owner: dpfaffenbauer
- Created: 2018-07-30T07:23:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T01:34:41.000Z (almost 2 years ago)
- Last Synced: 2024-05-01T23:15:59.344Z (7 months ago)
- Language: PHP
- Homepage:
- Size: 2.55 MB
- Stars: 8
- Watchers: 3
- Forks: 3
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dominik's Pimcore Project Skeleton
This a skeleton for Pimcore Applications.
This Skeleton comes pre-installed with following features:
- **CoreShop Pimcore Bundle** -> lot of helpful stuff
- **CoreShop SEO Bundle** -> SEO like a Pro
- **Docker** -> fully compatible docker images for PHP7.1 and PHP7.2 AND PHP7.3
- **Deployer** -> deploy like a Pro# Setup
**Create a new Project**
```
composer create-project dpfaffenbauer/pimcore-skeleton:6.0
```**Start docker**
```
docker-compose up -d
```**Connect to docker**
```
docker-compose exec php bash
```**Install Pimcore**
```
vendor/bin/pimcore-install --admin-username=admin \
--admin-password=admin \
--mysql-host-socket=db \
--mysql-username=pimcore \
--mysql-password=pimcore \
--mysql-database=pimcore
```**DONE**