Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
9862362
build(release): file w/ tag
RubenSibon Jan 9, 2026
527dae9
build(Make): re-add node versions
RubenSibon Jan 9, 2026
6608efd
build(xdebug): client host
RubenSibon Jan 9, 2026
813f724
feat(SCHUL-450): Enable proxy usage (#373)
RubenSibon Jan 13, 2026
18e82f5
Merge branch 'release/SCHUL_sprint-7' of github.com:Amsterdam/schuldd…
RubenSibon Jan 13, 2026
a9f94c4
feat(SCHUL-642): Dependency upgrades (#374)
RubenSibon Jan 13, 2026
ae627aa
chore: trivial space addition
RubenSibon Jan 13, 2026
c76fa15
Merge branch 'release/SCHUL_sprint-7' of github.com:Amsterdam/schuldd…
RubenSibon Jan 13, 2026
b0250b4
build(config): add Editor Config
RubenSibon Jan 13, 2026
715f039
Feat(schul-735): update .editorconfig (#379)
jmassink Jan 22, 2026
ffe998c
feat: check, sync and notify for GKA refresh
RubenSibon Jan 22, 2026
2c17d0a
Merge branch 'release/SCHUL_sprint-7' of github.com:Amsterdam/schuldd…
RubenSibon Jan 22, 2026
723c245
feat(mail): template and attempt to dispatch event
RubenSibon Jan 23, 2026
cc816d3
refactor: get header and call sync and update
RubenSibon Jan 23, 2026
29d5607
feat(SCHUL-662): only admin can see export to allegro button (#381)
jmassink Jan 23, 2026
bd58207
refactor: and new query to repo
RubenSibon Jan 23, 2026
350ff1d
refactor: more exact error handling
RubenSibon Jan 23, 2026
eacbeb3
Merge branch 'release/SCHUL_sprint-7' of github.com:Amsterdam/schuldd…
RubenSibon Jan 23, 2026
637e7ee
refactor: allegro command helper
RubenSibon Jan 26, 2026
fff5a16
feat(SCHUL-603): open pdf in nieuwe tab (#383)
jmassink Jan 27, 2026
cd9f44a
Feat(SCHUL-736): drop thumbnail table (#382)
jmassink Jan 27, 2026
5801234
fix(type): change var name to reflect type
RubenSibon Jan 27, 2026
e74eed7
refactor: inject repo in constructor
RubenSibon Jan 27, 2026
3806055
Merge branch 'release/SCHUL_sprint-7' of github.com:Amsterdam/schuldd…
RubenSibon Jan 27, 2026
bba49c1
fix: make param optional
RubenSibon Jan 27, 2026
cdc43fe
Release notes & release banner (#384)
RubenSibon Jan 27, 2026
a639993
Merge branch 'release/SCHUL_sprint-7' of github.com:Amsterdam/schuldd…
RubenSibon Jan 27, 2026
73c0104
refactor: rename fn to reflect type
RubenSibon Jan 30, 2026
b417edb
chore: address comments
RubenSibon Jan 30, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 160
trim_trailing_whitespace = true

[*.{php,html,twig,wsdl,xml}]
indent_size = 4

[*.md]
trim_trailing_whitespace = false

[Makefile]
indent_style = tab

[COMMIT_EDITMSG]
indent_size = 4
10 changes: 4 additions & 6 deletions Dockerfile_phpfpm_local
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ FROM php:8.2-fpm-alpine
COPY certificates/adp_rootca.crt /usr/local/share/ca-certificates/adp_rootca.crt
RUN update-ca-certificates --fresh

RUN apk update && apk upgrade

RUN apk add \
RUN apk add --no-cache \
icu-dev \
postgresql-dev \
libzip-dev \
Expand Down Expand Up @@ -50,9 +48,9 @@ COPY docker-phpfpm/www.conf /usr/local/etc/php-fpm.d

# Install dependencies and xdebug in one layer
RUN apk --no-cache add pcre-dev ${PHPIZE_DEPS} \
&& apk add --update linux-headers \
&& pecl install xdebug-3.3.0 && docker-php-ext-enable xdebug \
&& apk del pcre-dev ${PHPIZE_DEPS}
&& apk add --update linux-headers \
&& pecl install xdebug-3.4.1 && docker-php-ext-enable xdebug \
&& apk del pcre-dev ${PHPIZE_DEPS}

# Copy the Xdebug configuration file
COPY ./docker-phpfpm/xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
Expand Down
11 changes: 7 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dev:

fixtures:
kubectl exec -it deploy/schulddossier-phpfpm-schulddossier -- sh -c "php bin/console --no-interaction doctrine:migrations:migrate"
kubectl exec -it deploy/schulddossier-phpfpm-schulddossier -- sh -c "php bin/console doc:fix:load --no-interaction --purge-with-truncate"
kubectl exec -it deploy/schulddossier-phpfpm-schulddossier -- sh -c "php bin/console doc:fix:load --no-interaction --purge-with-truncate"

composer-install:
docker run --rm -v .:/app -u 1000:1000 composer install --no-scripts
Expand All @@ -62,10 +62,13 @@ composer-update:
docker run --rm -v .:/app -u 1000:1000 composer update --lock

npm-install:
docker run --rm -v .:/app -w /app -u 1000:1000 node sh -c "/usr/local/bin/npm install --no-audit --no-fund"
docker run --rm -v .:/app -w /app -u 1000:1000 node:24 sh -c "/usr/local/bin/npm install --no-audit --no-fund"

npm-run-dev:
docker run --rm -v .:/app -w /app -u 1000:1000 node sh -c "/usr/local/bin/npm run dev && /usr/local/bin/npm run css:build"
docker run --rm -v .:/app -w /app -u 1000:1000 node:24 sh -c "/usr/local/bin/npm run dev && /usr/local/bin/npm run css:build"

npm-watch:
docker run -it --init --rm -v .:/app -w /app -u 1000:1000 node sh -c "/usr/local/bin/npm run watch"
docker run -it --init --rm -v .:/app -w /app -u 1000:1000 node:24 sh -c "/usr/local/bin/npm run watch"

enter-pod:
kubectl exec -it deploy/schulddossier-phpfpm-schulddossier -- sh
1 change: 1 addition & 0 deletions assets/images/ico_fullscreen.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading