25 lines
No EOL
573 B
Bash
25 lines
No EOL
573 B
Bash
#!/bin/bash
|
|
|
|
|
|
### INSTALL SASS Compiler ###
|
|
# https://sass-lang.com/install
|
|
# https://github.com/sass/dart-sass/releases
|
|
# https://sass-lang.com/documentation/cli/dart-sass
|
|
|
|
# Arch based distros:
|
|
sudo pacman -S sass
|
|
|
|
#TODO Debian based distros
|
|
#
|
|
|
|
### UPGRADE TO PHP 8.2 ###
|
|
# There are several php 8.x features like `str_ends_with` and etc. Its recommended upgrade to latest version of php
|
|
|
|
# check if php is already installed
|
|
whereis php
|
|
|
|
# check php version with:
|
|
php --version
|
|
|
|
# When running server in local machine link /weblink to ./www
|
|
ln -sv /path/to/www/ /weblink |