A minimal setup for creating Laravel projects with Docker. The containers use Alpine Linux as base image.
- Nginx 1.15
- PHP-FPM 7.2
- Composer 1.7.2
- Node 8.12
| :root { | |
| --background: #31343f; | |
| --black: #1e2127; | |
| --light-black: #5c6370; | |
| --dark-white: #7f848e; | |
| --white: #abb2bf; | |
| --light-white: #ffffff; | |
| --red: #e06c75; | |
| --light-red: #e06c75; | |
| --green: #98c379; |
| 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 |
| {"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 |
| https://help.github.com/articles/removing-sensitive-data-from-a-repository/ |
| root = true | |
| [*] | |
| indent_style = space | |
| indent_size = 2 | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true | |
| insert_final_newline = true |
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "PHP Debug", | |
| "type": "php", | |
| "request": "launch", | |
| "port": 9000 | |
| }, | |
| { |
| { | |
| "env": { | |
| "browser": true, | |
| "es6": true | |
| }, | |
| "extends": "eslint:recommended", | |
| "parserOptions": { | |
| "ecmaVersion": 2015 | |
| }, | |
| "rules": { |