Recent Activity
isa
User for 1 year
Created Content
Recently Created Pages View All
Creating a Laravel project
Install compose Create project composer create-project --prefer-dist laravel/laravel <proje...
Enable new SSH key for login
On the local computer: ssh-copy-id -i ~/.ssh/<KEY_NAME>.pub <USERNAME>@<REMOTE>
Create new SSH key and add it to ssh-agent
ssh-keygen -t ed25519 -C "your_email@example.com" eval "$(ssh-agent -s)" ssh-add ~/.ssh/id_ed25...
Add to PATH in fish
Run the command: fish_add_path -p <PATH> Check the path:
Add environment variable in fish
Inside ~/.config/fish/config.fish add the following: set -gx <ENV_VAR_NAME> <VALUE>