No artigo a seguir, vou adotar a seguinte estrutura de pastas:
- TODO: Utilizar
treepara gerar estrutura de pastas.
- Executar o script
git-init-bare.sh - Copiar o conteúdo de
post-receive.shpara/var/www/html/project/.git/hooks/post-receive
| @font-face { | |
| font-family: 'PT Sans'; | |
| font-style: normal; | |
| font-weight: 400; | |
| src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v9/JX7MlXqjSJNjQvI4heMMGvY6323mHUZFJMgTvxaG2iE.woff2) format('woff2'); | |
| unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; | |
| } | |
| /* cyrillic */ | |
| @font-face { |
| { | |
| "env": { | |
| "browser": true, | |
| "es6": true | |
| }, | |
| "extends": "eslint:recommended", | |
| "parserOptions": { | |
| "ecmaVersion": 2015 | |
| }, | |
| "rules": { |
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "PHP Debug", | |
| "type": "php", | |
| "request": "launch", | |
| "port": 9000 | |
| }, | |
| { |
| root = true | |
| [*] | |
| indent_style = space | |
| indent_size = 2 | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true | |
| insert_final_newline = true |
| https://help.github.com/articles/removing-sensitive-data-from-a-repository/ |
| {"version":"2.0.122.1","settings":{"blur":0,"brightness":100,"contrast":100,"grayscale":0,"huerotate":0,"invert":0,"saturate":100,"sepia":0,"applyvideofilters":false,"backgroundcolor":"#000000","backgroundopacity":85,"blackbars":false,"blockautoplay":true,"blockhfrformats":false,"blockwebmformats":false,"boostvolume":false,"cinemamode":false,"cinemamodewideplayer":true,"controlbar":{"active":false,"autohide":false,"centered":true,"position":"absolute"},"controls":["speed","screenshot","options"],"controlsvisible":true,"controlspeed":false,"controlspeedmousebutton":false,"controlvolume":false,"controlvolumemousebutton":false,"convertshorts":false,"customcolors":{"--dimmer-text":"#cccccc","--hover-background":"#232323","--main-background":"#111111","--main-color":"#00adee","--main-text":"#eff0f1","--second-background":"#181818","--shadow":"#000000"},"customcssrules":"","customscript":"","customtheme":false,"darktheme":true,"date":0,"defaultvolume":true,"disableautoplay":true,"executescript":false,"expanddescrip |
| PWD := $(shell pwd) | |
| PATH := ${PWD}/node_modules/.bin:$(PATH) | |
| .SILENT: build clean install release watch | |
| all: install build watch | |
| clean: | |
| rm -rf dist/debug node_modules | |
| install: | |
| if [ ! -d node_modules ]; then npm ci; fi |