Because i need a timelapse solution who people can use it and install it easyly on raspberry pi and to test the new Symfony 5.
Just set timelapse parameters and save it.
Behind the scene a cron task will take a picture by using your settings.
- Raspberry Pi 3B+
- Raspberry Pi 3A
Just run:
wget https://raw.githubusercontent.com/MkLHX/rpi_timelapse_gui/master/installer.sh
chmod +x installer.sh
bash installer.shIn manual installation, we assume:
- you have a http webserver like Apache2 / Nginx or Lighttpd and you manage configuration
- you have every dependencies installed
sudo apt-get install git cron php php-fpm php-cgi php-xml php-curl php-gd php-sqlite3 composer fswebcam ftp -y
git clone https://github.com/MkLHX/rpi_timelapse_gui.git
cd rpi_timelapse_guisudo ln -s /home/pi/rpi_timelapse_gui/public /var/www/timelapsesudo chown -R www-data:www-data /var/www/timelapseAPP_ENV=prod
APP_SECRET=mysecretisawesome
DATABASE_URL="sqlite:///%kernel.project_dir%/var/timelapse.db"composer installphp bin/console d:d:cphp bin/console make:migrationphp bin/console d:s:u --forcephp bin/console c:csudo chmod -R 777 var