To be completed...
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
pnpm dlx nuxi module add eslint | |
pnpm dlx nuxi module add tailwindcss | |
pnpm dlx nuxi module add google-fonts | |
pnpm add -D vue-tsc typescript vite-plugin-eslint2 | |
package.json | |
"scripts": { | |
"lint:check": "eslint .", | |
"lint:fix": "eslint . --fix" |
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
<?php | |
use Illuminate\Support\ServiceProvider; | |
use Illuminate\Database\Eloquent\Builder; | |
use Illuminate\Support\Arr; | |
class AppServiceProvider extends ServiceProvider | |
{ | |
// ... |
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
WSL 2 | |
docker run --rm -v /$(pwd):/app composer create-project laravel/laravel nome_do_projeto | |
GIT BASH | |
docker run --rm -v /$(pwd):/app composer create-project laravel/laravel nome_do_projeto | |
ou | |
docker run --rm -v ${PWD}:/app composer create-project laravel/laravel nome_do_projeto |
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
<?php | |
namespace Deployer; | |
require 'recipe/common.php'; | |
// Project name | |
set('application', 'enovate.co.uk'); | |
// Project repository | |
set('repository', '[email protected]:enovatedesign/project.git'); |
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
# Usar verbos para descrever commit. A mensagem do commit deve ser em inglês | |
Exemplo: Add form login | |
Exemplo: Update navbar items | |
Exemplo: Change site title | |
Exemplo: Rename README.txt to README.md | |
# Usar commit pequenos e atômicos | |
Cada commit deve ter de dois a 5 linhas de código alteradas |