File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 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
22APP_KEY =
33JWT_SECRET =
44
5+ # Frontend variables (Always prefixed with VITE_)
56VITE_FRONTEND_URL = http://localhost:8123
67VITE_API_URL_CLIENT = http://localhost:8123/api
78VITE_API_URL_SERVER = http://localhost:80/api
89VITE_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
1015LOG_CHANNEL = stderr
1116QUEUE_CONNECTION = sync
1217MAIL_MAILER = log
@@ -15,5 +20,6 @@ FILESYSTEM_PUBLIC_DISK=public
1520FILESYSTEM_PRIVATE_DISK = local
1621
1722APP_CDN_URL = http://localhost:8123/storage
23+ APP_FRONTEND_URL = http://localhost:8123
1824
1925DATABASE_URL = postgresql://postgres:secret@postgres:5432/hi-events
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments