Skip to content

Instantly share code, notes, and snippets.

View MiguelSanzBr's full-sized avatar
🧨
Seguindo a prática de não commitar diretamente na branch main/master.

Miguel Sanz Boragan MiguelSanzBr

🧨
Seguindo a prática de não commitar diretamente na branch main/master.
View GitHub Profile
@alfajrimutawadhi
alfajrimutawadhi / deploy-laravel-en.md
Created June 16, 2023 06:19
How to deploy Laravel to server (VPS)

How to deploy Laravel application to Virtual Private Server (VPS)


Some things you need :

  • Laravel project
  • VPS / Virtual Private Server
  • Domain (if any)

Here's how to deploy your Laravel application to the server

  1. Put your Laravel project into source code management (github/gitlab/others)
    Here I will use my company-management reporsitory.
@leidison
leidison / ubuntu20.04_php8.1_sqlsrv.sh
Created February 9, 2022 01:12
Install PHP 8.1 and SQLSRV on Ubuntu 20.04
#!/bin/bash
#ubuntu 20.04
#php8.1
# install php ppa
apt -y install software-properties-common
add-apt-repository ppa:ondrej/php -y
apt update
@prrao87
prrao87 / install_postman_mint_no_snap.md
Last active July 28, 2025 07:56
Install Postman on Linux Mint (without using snap)

Goal

Postman is a usefull app to build and test APIs, most commonly installed on ubuntu-like systems via snap. On recent distributions of Linux Mint (20 and above), snap installs are no longer possible. The instructions below show how to install Postman via the terminal.

Download Postman

$ wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz

Extract archive

$ sudo tar -xzf postman.tar.gz -C /opt

Make symlink