<aside> ©️ I’m Creative Commons license

This work by KdotWei, Amanda, and PyLin is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

Based on a work at Training Workshop.

</aside>

VS Code Extensions Suggested


NGINX Configurationv0.7.2 - by William Voyek

PHP Extension Packv1.0.3 - by Xdebug

Laravel Blade Snippetsv1.34.0 - by Winnie Lin

Laravel Extra Intellisensev0.6.3 - by amir

Livewire Language Supportv0.2.8 - by cierra

Livewire gotov1.1.0 - by lennardv

Quick Start


On Azure Web

New a VM for this workshop.

Microsoft Azure Student

In Your Computer

Use terminal to connect to the server we just created.

The server ip can be checked in the website, and the name should be public ip address.

ssh <username>@<server-ip>

Server Configuration

Update and upgrade should be done right after the creation of the server, and before any operations or installation.

** The reason to add sudo : The role is not root anymore, but the user you specified (username)

sudo apt update
sudo apt upgrade -y

<aside> ➕ SUPPLEMENTARY

&& Enables the two constructions run in order at once.

</aside>