8 Commits

Author SHA1 Message Date
5fcc7c78bb Merge pull request 'center files table' (#3) from sites/file-explorer:main into main
Reviewed-on: #3
2024-12-21 13:25:57 +00:00
bca12e5483 center files table
Reviewed-on: sites/file-explorer#11
Co-authored-by: jank1619 <jan@kjan.email>
Co-committed-by: jank1619 <jan@kjan.email>
2024-12-21 13:18:10 +00:00
c1e1ab081f style(home.html.twig): adjust centering of container element (#2)
Co-authored-by: Jan Klattenhoff <j.klattenhoff@neusta.de>
Reviewed-on: #2
2024-12-20 07:03:38 +00:00
4826805f57 Merge pull request 'main' (#1) from sites/file-explorer:main into main
Reviewed-on: #1
2024-12-20 06:54:18 +00:00
ca9a18987b refactor pipelines
Reviewed-on: sites/file-explorer#10
2024-12-19 13:06:24 +00:00
0e53f0a199 fix pipelines
Reviewed-on: sites/file-explorer#9
2024-12-11 21:21:41 +00:00
831466cba9 change ddev db version bc idk 2024-12-11 22:01:24 +01:00
12730b8bcd add file preview
Reviewed-on: sites/file-explorer#6
2024-12-06 13:04:56 +00:00
3 changed files with 8 additions and 8 deletions

View File

@ -7,8 +7,8 @@ xdebug_enabled: false
additional_hostnames: [] additional_hostnames: []
additional_fqdns: [] additional_fqdns: []
database: database:
type: mariadb type: postgres
version: "10.11" version: "17"
use_dns_when_possible: true use_dns_when_possible: true
composer_version: "2" composer_version: "2"
web_environment: [] web_environment: []

View File

@ -7,10 +7,10 @@ on:
- main - main
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: remote
steps: steps:
- uses: actions/checkout@v4 - uses: https://git.simonis.lol/actions/checkout@v4
- uses: docker/login-action@v1 - uses: https://git.simonis.lol/actions/login@v1
with: with:
registry: git.simonis.lol registry: git.simonis.lol
username: ${{ vars.DOCKER_USER }} username: ${{ vars.DOCKER_USER }}
@ -20,4 +20,4 @@ jobs:
run: docker build -t git.simonis.lol/sites/file-explorer:latest . run: docker build -t git.simonis.lol/sites/file-explorer:latest .
- name: push - name: push
run: docker push git.simonis.lol/sites/file-explorer:latest run: docker push git.simonis.lol/sites/file-explorer:latest

View File

@ -3,7 +3,7 @@
{% block title %}Home{% endblock %} {% block title %}Home{% endblock %}
{% block body %} {% block body %}
<center class="container mt-5"> <center class="container mt-5 mx-auto">
{% include '_partials/_table.html.twig' %} {% include '_partials/_table.html.twig' %}
</center> </center>
{% endblock %} {% endblock %}