Skip to content

Instantly share code, notes, and snippets.

View allozaur's full-sized avatar
🏠
Working from home

Aleksander Grygier allozaur

🏠
Working from home
View GitHub Profile

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@allozaur
allozaur / netlify.vcl
Created March 4, 2021 00:35 — forked from paramdeo/netlify.vcl
Varnish Cache Example Config for Use with Netlify
vcl 4.1;
# Based on: https://github.com/mattiasgeniar/varnish-6.0-configuration-templates/blob/master/default.vcl
import std;
import directors;
backend netlify {
.host = "104.198.14.52";
.port = "80";
.max_connections = 300;
@allozaur
allozaur / m2-setup-install.sh
Created October 7, 2018 23:15 — forked from matt-bailey/m2-setup-install.sh
Example Magento 2 setup:install command
php bin/magento setup:install --base-url=http://mysite.dev --db-host=localhost --db-name=mysite --db-user=root --admin-firstname=Magento --admin-lastname=User --admin-email=my@email.com --admin-user=admin --admin-password=password123 --language=en_GB --currency=GBP --timezone=Europe/London --use-rewrites=1 --backend-frontname=admin