Skip to content

Commit

Permalink
0.0.1: #2
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Aug 9, 2019
0 parents commit 7a25211
Show file tree
Hide file tree
Showing 7 changed files with 91 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 2017-03-09
# https://github.com/isaacs/github/issues/170#issuecomment-150489692
root = true
[*]
indent_size = 4
indent_style = tab
48 changes: 48 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
A custom module for [julio.com](https://julio.com) (Magento 2).

## How to install
```
bin/magento maintenance:enable
rm -rf composer.lock
composer clear-cache
composer require julio.com/core:*
bin/magento setup:upgrade
rm -rf var/di var/generation generated/code
bin/magento setup:di:compile
rm -rf pub/static/*
bin/magento setup:static-content:deploy \
--area adminhtml \
--theme Magento/backend \
-f en_US es_MX
bin/magento setup:static-content:deploy \
--area frontend \
--theme Mgs/claue \
-f en_US es_MX
bin/magento maintenance:disable
bin/magento cache:enable
```

## How to upgrade
```
bin/magento maintenance:enable
composer remove julio.com/core
rm -rf composer.lock
composer clear-cache
composer require julio.com/core:*
bin/magento setup:upgrade
rm -rf var/di var/generation generated/code
bin/magento setup:di:compile
rm -rf pub/static/*
bin/magento setup:static-content:deploy \
--area adminhtml \
--theme Magento/backend \
-f en_US es_MX
bin/magento setup:static-content:deploy \
--area frontend \
--theme Mgs/claue \
-f en_US es_MX
bin/magento maintenance:disable
bin/magento cache:enable
```

If you have problems with these commands, please check the [detailed instruction](https://mage2.pro/t/263).
17 changes: 17 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "julio.com/core"
,"version": "0.0.1"
,"description": "A custom module for julio.com (Magento 2)"
,"type": "magento2-module"
,"homepage": "https://github.com/julio-com/core"
,"license": "MIT"
,"authors": [{
"name": "Dmitry Fedyuk"
,"email": "admin@mage2.pro"
,"homepage": "https://mage2.pro/users/dmitry_fedyuk"
,"role": "Developer"
}]
,"require": {"mage2pro/core": ">=5.0.0"}
,"autoload": {"files": ["registration.php"], "psr-4": {"Julio\\Core\\": ""}}
,"keywords": ["Magento 2"]
}
7 changes: 7 additions & 0 deletions etc/module.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version='1.0'?>
<config
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:noNamespaceSchemaLocation='urn:magento:framework:Module/etc/module.xsd'
>
<module name='Julio_Core' setup_version='0.0.1'/>
</config>
3 changes: 3 additions & 0 deletions registration.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?php
use Magento\Framework\Component\ComponentRegistrar as R;
R::register(R::MODULE, 'Julio_Core', __DIR__);
8 changes: 8 additions & 0 deletions view/frontend/layout/default.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version='1.0'?>
<page
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:noNamespaceSchemaLocation='urn:magento:framework:View/Layout/etc/page_configuration.xsd'
>
<!-- 2019-07-30 The Claue theme does not load `_module.less` files. -->
<head><css src='Julio_Core::main.css'/></head>
</page>
2 changes: 2 additions & 0 deletions view/frontend/web/main.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// 2019-08-10 «Add a logo to the header»: https://github.com/julio-com/core/issues/2
@media (min-width: 1200px) {html.use-header10 .header .logo-left-header {margin-left: 2em;}}

0 comments on commit 7a25211

Please sign in to comment.