Skip to content

Commit

Permalink
Use sqlite DB in release process to not depend on MySQL
Browse files Browse the repository at this point in the history
  • Loading branch information
doobry-systemli committed Dec 27, 2024
1 parent affac95 commit 9986e40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ prepare:
mkdir -p build

release: clean prepare
APP_ENV=prod composer install --no-dev --ignore-platform-reqs
APP_ENV=prod composer dump-autoload
APP_ENV=prod DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db" composer install --no-dev --ignore-platform-reqs
APP_ENV=prod DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db" composer dump-autoload
yarn --pure-lockfile
yarn encore production
# Create a release tarball
Expand Down

0 comments on commit 9986e40

Please sign in to comment.