Skip to content

Commit 33653d8

Browse files
Merge pull request #3205 from Leantime/feature/cloud-sync-accessibility-kanban
Feature/cloud sync accessibility kanban
2 parents 2347139 + 9ff494b commit 33653d8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+5635
-144
lines changed

.dev/docker-compose.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ services:
2626
condition: service_healthy
2727
networks:
2828
- leantime_internal
29+
- leantime
2930
# - traefik
3031
# labels:
3132
# - "traefik.enable=true"
@@ -98,6 +99,8 @@ networks:
9899
leantime_internal:
99100
driver: bridge
100101
name: leantime_internal
102+
leantime:
103+
driver: bridge
101104
# traefik:
102105
# external: true
103106
# name: traefik

.dev/dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN DEBIAN_FRONTEND=noninteractive \
2828
iputils-ping \
2929
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
3030

31-
RUN pecl install xdebug
31+
RUN pecl install xdebug redis
3232

3333
RUN docker-php-ext-configure gd --enable-gd --with-jpeg=/usr/include/ --with-freetype --with-jpeg
3434
RUN docker-php-ext-install \
@@ -43,7 +43,7 @@ RUN docker-php-ext-install \
4343
opcache \
4444
ldap \
4545
zip
46-
RUN docker-php-ext-enable zip xdebug
46+
RUN docker-php-ext-enable zip xdebug redis
4747

4848
COPY ./dev-apache-site.conf /etc/apache2/sites-enabled/000-default.conf
4949

.dev/test.env

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ LEAN_DEBUG = true # Debug flag
1717
# Database
1818
LEAN_DB_HOST=leantime-db
1919
LEAN_DB_USER=root
20-
LEAN_DB_PASSWORD=test
20+
LEAN_DB_PASSWORD=leantime
2121
LEAN_DB_DATABASE=leantime_test
2222
LEAN_DB_PORT=3306
2323

@@ -134,3 +134,9 @@ LEAN_RATELIMIT_GENERAL = 50000
134134
LEAN_RATELIMIT_AUTH = 50000
135135
LEAN_RATELIMIT_API = 50000
136136

137+
# Cache Configuration for testing (use file cache instead of Redis)
138+
LEAN_USE_REDIS=false
139+
CACHE_DRIVER=file
140+
SESSION_DRIVER=file
141+
QUEUE_CONNECTION=sync
142+

0 commit comments

Comments
 (0)