Skip to content

Commit d44513b

Browse files
authored
Merge pull request #310 from HiEventsDev/fix/update-aio-compose-file
Add APP_FRONTEND_URL to AIO Docker compose file
2 parents 8744686 + 37619e7 commit d44513b

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

docker/all-in-one/.env

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
1-
# See the README.md for informaiton on how to generate the JWT_SECRET and APP_KEY
1+
# See the README.md file for informaiton on how to generate the JWT_SECRET and APP_KEY
22
APP_KEY=
33
JWT_SECRET=
44

5+
# Frontend variables (Always prefixed with VITE_)
56
VITE_FRONTEND_URL=http://localhost:8123
67
VITE_API_URL_CLIENT=http://localhost:8123/api
78
VITE_API_URL_SERVER=http://localhost:80/api
89
VITE_STRIPE_PUBLISHABLE_KEY=pk_test
910

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

1722
APP_CDN_URL=http://localhost:8123/storage
23+
APP_FRONTEND_URL=http://localhost:8123
1824

1925
DATABASE_URL=postgresql://postgres:secret@postgres:5432/hi-events

docker/all-in-one/docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ services:
1515
- QUEUE_CONNECTION=${QUEUE_CONNECTION}
1616
- MAIL_MAILER=${MAIL_MAILER}
1717
- APP_KEY=${APP_KEY}
18+
- APP_FRONTEND_URL=${APP_FRONTEND_URL}
1819
- JWT_SECRET=${JWT_SECRET}
1920
- FILESYSTEM_PUBLIC_DISK=${FILESYSTEM_PUBLIC_DISK}
2021
- FILESYSTEM_PRIVATE_DISK=${FILESYSTEM_PRIVATE_DISK}

0 commit comments

Comments
 (0)