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.sh
In 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_gui
sudo ln -s /home/pi/rpi_timelapse_gui/public /var/www/timelapse
sudo chown -R www-data:www-data /var/www/timelapse
APP_ENV=prod
APP_SECRET=mysecretisawesome
DATABASE_URL="sqlite:///%kernel.project_dir%/var/timelapse.db"
composer install
php bin/console d:d:c
php bin/console make:migration
php bin/console d:s:u --force
php bin/console c:c
sudo chmod -R 777 var