This document helps get your macOS development environment up and running with the latest versions of Homebrew, Apache, PHP, and MariaDB.
# Docker file for Ubuntu with OpenJDK 18 and Tomcat 9. | |
FROM ubuntu:latest | |
LABEL maintainer="Karl Hill <[email protected]>" | |
# Set environment variables | |
ENV TOMCAT_VERSION 9.0.71 | |
ENV CATALINA_HOME /usr/local/tomcat | |
ENV JAVA_HOME /usr/lib/jvm/java-18-openjdk-amd64 | |
ENV PATH $CATALINA_HOME/bin:$PATH |
This document provides help to get your Laravel 9 instance running with the latest versions of Laravel Mix and Font Awesome.
This document provides help to get your Laravel 8 instance running with the latest versions of Laravel Mix and Font Awesome.
This document provides help on getting your macOS development environment up and running with the latest versions of Homebrew, Apache, PHP, and MariaDB.
Before we get started we need to make sure XCode Command Line Tools is installed on your system.
$ xcode-select --install
This document provides help on getting your Laravel instance running with the latest versions of Laravel Mix and Font Awesome. Note: This guide is for Laravel versions 5 through 7. If you are using Laravel 8, please go here.
# macOS generated files # | |
######################### | |
.DS_Store | |
.DS_Store? | |
.Spotlight-V100 | |
.Trashes | |
Thumbs.db | |
# Editors # | |
########### |
This document provides help on getting your macOS development environment up and running with the latest versions of Homebrew, Apache, PHP, etc.
Homebrew is an excellent package manager for macOS; let's install it.
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"