Some things you need :
- Laravel project
- VPS / Virtual Private Server
- Domain (if any)
- Put your Laravel project into source code management (github/gitlab/others)
Here I will use my company-management reporsitory.
Some things you need :
| #!/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 |
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.
$ wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz
$ sudo tar -xzf postman.tar.gz -C /opt