Vagrant for Friendica Developers

Vagrant is a virtualization solution for developers. No need to setup up a webserver, database etc. before actually starting. Vagrant creates a virtual machine for you that you can just run inside VirtualBox and start to work directly on Friendica.

It brings up an Debian Bullseye with PHP 8.0, Apache2 and MariaDB.

  1. Install VirtualBox and vagrant. Please use an up-to-date vagrant version from https://www.vagrantup.com/downloads.html
  2. Git clone your Friendica repository. Inside, you'll find a “Vagrantfile” and some scripts in the utils folder
  1. Run vagrant up from inside the friendica clone: $> vagrant up. Be patient: When it runs for the first time, it downloads an Ubuntu Server image
  2. Run vagrant ssh to log into the virtual machine to log in to the VM: $> vagrant ssh
  3. Open your test installation in a browser. Go to (up to Friendica 2022.10) 192.168.22.10 (after Friendica 2022.10) 192.168.56.101) . The mysql database is called friendica, the mysql user and password both are friendica
  1. Work on Friendicas code in your git clone on your machine (not in the VM). Your local working directory is set up as a shared directory with the VM (/vagrant)
  2. Check the changes in your browser in the VM. Debug via the “vagrant ssh” login. Find the Friendica log file /vagrant/logfile.out
  3. Commit and push your changes directly back to Github
  1. If you want to stop vagrant after finishing your work, run the following command $> vagrant halt in the development directory. This will not delete the virtual machine.
  2. To ultimately delete the virtual machine run $> vagrant destroy and $> rm /vagrant/config/local.config.php to make sure that you can start from scratch with another “vagrant up”.

The vagrant Friendica instance contains a test database. You will then have the following accounts to login:

  • user: admin, password: admin
  • user: friendica, password friendica

For further documentation of vagrant, please see the vagrant*docs*.


1)
Virtualbox has made some changes regarding the IP address a guest system can use. If you get an error about the network address, you might need to change the IP address in the Vagrantfile, the Vagrant config file and the provision script (see this change set (at github)
  • Last modified: 2022-10-17 05:30