Skip to content

Instantly share code, notes, and snippets.

View filhocodes's full-sized avatar

Marcos SF Filho filhocodes

View GitHub Profile
@filhocodes
filhocodes / app.blade.php
Last active April 13, 2021 12:57
Inertia React + Laravel Setup
<!DOCTYPE html>
<html lang="{{ config('app.locale') }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{{ config('app.name') }}</title>
<link rel="stylesheet" href="{{ mix('styles.css', 'build') }}">
</head>
<body>
@inertia
@filhocodes
filhocodes / .gitignore
Created February 14, 2021 13:30
Ansible Setup
inventory.local.yml
@filhocodes
filhocodes / php.ini
Created December 23, 2018 13:09
PHP Config (for Development)
# Execution limits
max_execution_time = 30
max_input_time = 60
memory_limit = 128M
# Development
error_reporting = E_ALL
display_errors = On
display_startup_errors = On
html_errors = On
@filhocodes
filhocodes / docker-clean.sh
Created June 18, 2017 14:52
Docker Cleanup
docker stop $(docker ps -q);
docker rm $(docker ps -a -q);
docker rmi $(docker images -q);
docker volume rm $(docker volume ls -q);
@filhocodes
filhocodes / .npmignore
Created August 3, 2015 03:49
.npmignore template
# https://gist.github.com/marcossffilho/ea0ce441b126ff4b4ca2
.lock-wscript
.gitignore
.svn/
.hg/
.git/
CVS/
*~
*.bak
*.kate-swp
@filhocodes
filhocodes / .editorconfig
Last active April 18, 2017 16:30
EditorConfig
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true