Skip to content

Commit

Permalink
test improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelfolaron committed Aug 16, 2024
1 parent aa36199 commit d3d9008
Show file tree
Hide file tree
Showing 6 changed files with 104 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .dev/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,4 @@ RUN a2enmod rewrite
VOLUME /var/www/uploads

RUN mkdir -p /var/www/uploads \
&& chown -R www-data:www-data /var/www/uploads \
&& chown -R www-data:www-data /var/www/logs \
&& chown -R www-data:www-data /var/www/cache
&& chown -R www-data:www-data /var/www/uploads
2 changes: 1 addition & 1 deletion .dev/test.env
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ LEAN_KEEP_THEME = true # Keep theme and language fro
## Fileuploads

# Local File Uploads
LEAN_USER_FILE_PATH = '../uploads/' # Local relative path to store uploaded files (if not using S3)
LEAN_USER_FILE_PATH = 'userfiles/' # Local relative path to store uploaded files (if not using S3)
LEAN_DB_BACKUP_PATH = 'backupdb/' # Local relative path to store backup files, need permission to write

# S3 File Uploads
Expand Down
49 changes: 49 additions & 0 deletions .idea/leantime-oss.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 49 additions & 0 deletions .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/phpspec.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
require $composer;

define('PROJECT_ROOT', realpath(__DIR__ . '/..') . '/');
define('APP_ROOT', PROJECT_ROOT . 'app/');
define('APP_ROOT', PROJECT_ROOT . '/');
define('DEV_ROOT', PROJECT_ROOT . '.dev/');

$bootstrapper = get_class(new class {
Expand Down

0 comments on commit d3d9008

Please sign in to comment.