-
Notifications
You must be signed in to change notification settings - Fork 3
upgrade2019.1to2020.1
Flip edited this page Dec 29, 2020
·
11 revisions
- upgrade to laravel 6
- Add training module
- Redesign landing pages
- remove small bugs
- userguide accable in menu
- create demo mode
- add site statistics
- Admin Actions on Dashboard like "Dienstplan an alle Versenden"
- services comes now with start time and end date+time
If you come from a version before 2019.1 please upgrade sequentially
- Stop Webserver oder set laravel to maintance
php artisan down
to prevent changes of users - Make a Backup of your Database!
- Get new Codebase:
git checkout tags/2020.1
- Update.env File: you can compare .env.example with your .env or just add the following updates to your .env file:
OFFER.DIENSTPLAN=false
- Update dependencies:
php composer.phar install && php composer.phar dump-autoload -o
- Update Database Layout:
php artisan migrate
- Restart queue worker
php artisan queue:restart
- Start webserver or reactivate laravel
php artisan up