5 Commits

Author SHA1 Message Date
8f82768adc feat: Added Convertx 2026-02-01 00:38:22 +01:00
22352dd8a7 feat: Added .DS_Store to .gitignore 2026-02-01 00:24:05 +01:00
704ecf7024 revert 3202ede472
revert feat: Added CI Pipeline
- Lint the Docker Compose files using DCLinter Github Action
- Format the Docker Compose files with the 'compose_format' Python module
2026-01-30 21:19:27 +00:00
3202ede472 feat: Added CI Pipeline
Some checks failed
Lint and Format Docker Compose files / Docker Compose Lint (push) Has been cancelled
Lint and Format Docker Compose files / Docker Compose formatting (push) Has been cancelled
- Lint the Docker Compose files using DCLinter Github Action
- Format the Docker Compose files with the 'compose_format' Python module
2025-12-26 14:14:02 +01:00
5856a875e4 Merge pull request 'feat: Added .gitignore' (#1) from development into main
Reviewed-on: #1
2025-12-23 23:45:07 +00:00
3 changed files with 31 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
.DS_Store
*.env *.env

7
dist/convertx/.env.example vendored Normal file
View File

@@ -0,0 +1,7 @@
SERVICE_DOMAIN=convertx.example.com
HTTP_ALLOWED=false
ALLOW_UNAUTHENTICATED=true
LANGUAGE=en
AUTO_DELETE_EVERY_N_HOURS=12
JWT_SECRET=changeme

23
dist/convertx/compose.yaml vendored Normal file
View File

@@ -0,0 +1,23 @@
networks:
traefik-network:
external: true
services:
convertx:
container_name: convertx
image: ghcr.io/c4illin/convertx
restart: unless-stopped
environment:
- HTTP_ALLOWED=${HTTP_ALLOWED}
- ALLOW_UNAUTHENTICATED=${ALLOW_UNAUTHENTICATED}
- LANGUAGE=${LANGUAGE}
- AUTO_DELETE_EVERY_N_HOURS=${AUTO_DELETE_EVERY_N_HOURS}
- JWT_SECRET=${JWT_SECRET}
labels:
- "traefik.enable=true"
- "traefik.http.routers.convertx.rule=Host(`${SERVICE_DOMAIN}`)"
- "traefik.http.routers.convertx.entrypoints=https"
- "traefik.http.routers.convertx.tls.certresolver=letsencrypt"
networks:
- traefik-network
volumes:
- ./data:/app/data