Skip to content

Commit

Permalink
Add APP_FRONTEND_URL to AIO Docker compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
daveearley committed Dec 7, 2024
1 parent 8744686 commit 37619e7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docker/all-in-one/.env
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# See the README.md for informaiton on how to generate the JWT_SECRET and APP_KEY
# See the README.md file for informaiton on how to generate the JWT_SECRET and APP_KEY
APP_KEY=
JWT_SECRET=

# Frontend variables (Always prefixed with VITE_)
VITE_FRONTEND_URL=http://localhost:8123
VITE_API_URL_CLIENT=http://localhost:8123/api
VITE_API_URL_SERVER=http://localhost:80/api
VITE_STRIPE_PUBLISHABLE_KEY=pk_test

# Backend variables
# These values may not be suitable for production environments.
# Please refer to the documentation for more information on how to configure these values
# https://hi.events/docs/getting-started/deploying
LOG_CHANNEL=stderr
QUEUE_CONNECTION=sync
MAIL_MAILER=log
Expand All @@ -15,5 +20,6 @@ FILESYSTEM_PUBLIC_DISK=public
FILESYSTEM_PRIVATE_DISK=local

APP_CDN_URL=http://localhost:8123/storage
APP_FRONTEND_URL=http://localhost:8123

DATABASE_URL=postgresql://postgres:secret@postgres:5432/hi-events
1 change: 1 addition & 0 deletions docker/all-in-one/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
- QUEUE_CONNECTION=${QUEUE_CONNECTION}
- MAIL_MAILER=${MAIL_MAILER}
- APP_KEY=${APP_KEY}
- APP_FRONTEND_URL=${APP_FRONTEND_URL}
- JWT_SECRET=${JWT_SECRET}
- FILESYSTEM_PUBLIC_DISK=${FILESYSTEM_PUBLIC_DISK}
- FILESYSTEM_PRIVATE_DISK=${FILESYSTEM_PRIVATE_DISK}
Expand Down

0 comments on commit 37619e7

Please sign in to comment.