No description
  • PHP 80.6%
  • Twig 19.1%
  • Dockerfile 0.3%
Find a file
2026-06-21 00:49:00 +02:00
.devcontainer Upgrade devcontainer to PHP 8.0 2023-07-08 19:22:50 +00:00
app Add new project notification 2026-06-20 22:34:35 +02:00
bootstrap Change project namespace back to App 2021-04-23 23:54:11 +02:00
config Settings: add e-mail testing feature 2026-06-13 20:44:05 +02:00
database Implement database seeders 2026-06-21 00:49:00 +02:00
docker Update docker container to PHP 8.4 2025-12-27 13:18:06 +01:00
lang/en Upgrade to Laravel 9 2023-07-08 20:34:29 +00:00
public Less padding 2025-12-04 19:44:54 +01:00
resources/views Profile: add mail notification settings 2026-06-13 20:45:16 +02:00
routes Fix translation permission checks 2026-06-20 13:02:26 +02:00
storage Upgrade Laravel to 5.7 2019-12-31 10:04:37 +01:00
tests Add new project notification 2026-06-20 22:34:35 +02:00
.env.example Add GitHub login integration. 2018-01-17 18:41:25 +01:00
.gitattributes Initialize Laravel 5 application. 2017-09-02 21:06:12 +02:00
.gitignore Upgrade to Laravel 10 2023-07-09 13:39:08 +00:00
artisan Initialize Laravel 5 application. 2017-09-02 21:06:12 +02:00
composer.json Upgrade to Laravel 13 2026-06-13 22:39:27 +02:00
composer.lock Upgrade to Laravel 13 2026-06-13 22:39:27 +02:00
coverage.sh GlossaryEntryController: 100% test coverage 2024-08-17 22:15:24 +00:00
docker-compose.yml Update docker settings to allow debugging 2025-01-12 12:12:36 +01:00
LICENSE Add LICENSE. 2018-01-20 21:01:53 +01:00
phpunit.xml Remove coverage section from phpunit.xml 2026-06-20 22:34:35 +02:00
README.md Set up job queues 2025-12-13 19:45:18 +01:00

Polyglot

Installation

composer install
php artisan migrate
php artisan storage:link
php artisan queue:work

It is assumed that the database has case-insensitive collation set.

Docker

docker-compose up -d
docker-compose exec app composer install
docker-compose exec app php artisan migrate
docker-compose exec app php artisan storage:link
docker-compose exec app php artisan queue:work