Skip to content

Commit

Permalink
Merge pull request #78 from Justintime50/vite
Browse files Browse the repository at this point in the history
chore: migrate webpack to vite
  • Loading branch information
Justintime50 authored Apr 5, 2023
2 parents 9423cb3 + 14a6751 commit ae1cb76
Show file tree
Hide file tree
Showing 17 changed files with 592 additions and 187 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# CHANGELOG

## Next Release
## v0.14.0 (2023-04-05)

- Upgrades from Laravel 9 to 10
- Migrates from Webpack to Vite
- Fixes admin page category table pagination
- Fixes post comment avatar paths
- Bumps all dependencies
Expand Down
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
FROM justintime50/nginx-php:8.1-11
FROM justintime50/nginx-php:8.1-14

COPY --chown=www-data:www-data ./src /var/www/html

RUN composer install -q --no-ansi --no-interaction --no-scripts --no-plugins --no-progress --prefer-dist \
# Setup Laravel
&& chmod -R 755 storage bootstrap/cache \
&& php artisan storage:link \
&& php artisan optimize:clear
&& php artisan optimize:clear \
&& npm install -s \
&& npm run build
4 changes: 2 additions & 2 deletions src/.env-example
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1

MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

NOCAPTCHA_SECRET=
NOCAPTCHA_SITEKEY=
Expand Down
Loading

0 comments on commit ae1cb76

Please sign in to comment.