-
Laravel
Laravel is a web application framework with expressive, elegant syntax. We’ve already laid the foundation for your next big idea — freeing you to create without sweating the small things.
# Add Vagrant user to the www-data group and correct file permissions sudo usermod -a -G www-data vagrant # Set the group ownership of the /var/www/html directory to www-data sudo chown -R vagrant:www-data /var/www/html echo "Group ownership of /var/www/html changed ========================================================================" echo # Grant write permissions to the www-data group for the /var/www/html directory sudo chmod -R 775 /var/www/html echo "Group can now write to the /var/www/html directory ==============================================================" echo # Navigate to Apache Document root first cd /var/www/html # Clone the repo directory in this directory (remember the full stop at the end of the command, it is very important) git clone https://github.com/laravel/laravel.git . # Install dependencies with composer composer install
-
InfluxDB
InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
-
laravel-application-deployment
All good things come to an end and the second semester has to too. This is the culmination of everything we learnt this semester, the exam project tests our knowledge so far.
In the VagrantFile I simply specified the type of base box with which each VM would be created, I ensured they used a private network and they get their IP address from the DHCP server. I also specified the name and hostname of each VM.