- Install Package Control
- Install packages
- Material Theme
- Emmet
- ImprovedMacros for multi-commands
- Set User settings
- Set Key Bindings
- Laravel 5 Artisan
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"always_show_minimap_viewport": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"default_line_ending": "unix", | |
"draw_white_space": "all", | |
"font_size": 11, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-keygen -o -a 100 -t ed25519 -f id_hue -C "hue" |
- each with his own env file
- own assets folder
- own resources folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- pa make:model Post -fa | |
Force creation of Post model, controller, migration and factory. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- $ composer validate | |
- $ composer diagnose | |
- $ composer self-update | |
- $ composer create-project laravel/laravel laravel1 --no-progress --profile --prefer-dist | |
- $ composer global require hirak/prestissimo # makes composer run faster |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- .gitignore, LICENSE.txt, phpunit.xml, readme.md, tests/, src/ | |
- $ composer init | |
- $ cda | |
- $ composer require illuminate/support |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit backupGlobals="false" | |
backupStaticAttributes="false" | |
bootstrap="vendor/autoload.php" | |
colors="true" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
processIsolation="false" | |
stopOnFailure="false" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "keys": [";", ";"], "command": "exit_insert_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": false }, | |
{ "key": "setting.is_widget", "operand": false } | |
] | |
}, | |
{ "keys": ["ctrl+shift+r"], "command": "reveal_in_side_bar"}, | |
{ "keys": ["ctrl+alt+r"], "command": "goto_symbol_in_project"}, |
- $ laravel new laravel55 --dev
- $ composer require laravel/homestead --dev # this gives per project homestead
- $ vendor\bin\homestead make # will create vagrant file
- $ vagrant up
- $ composer require laravel/dusk --dev
- add dusk provider in config using app service provider wrapped to run locally only