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
2
2
APP_KEY =
3
3
JWT_SECRET =
4
4
5
+ # Frontend variables (Always prefixed with VITE_)
5
6
VITE_FRONTEND_URL = http://localhost:8123
6
7
VITE_API_URL_CLIENT = http://localhost:8123/api
7
8
VITE_API_URL_SERVER = http://localhost:80/api
8
9
VITE_STRIPE_PUBLISHABLE_KEY = pk_test
9
10
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
10
15
LOG_CHANNEL = stderr
11
16
QUEUE_CONNECTION = sync
12
17
MAIL_MAILER = log
@@ -15,5 +20,6 @@ FILESYSTEM_PUBLIC_DISK=public
15
20
FILESYSTEM_PRIVATE_DISK = local
16
21
17
22
APP_CDN_URL = http://localhost:8123/storage
23
+ APP_FRONTEND_URL = http://localhost:8123
18
24
19
25
DATABASE_URL = postgresql://postgres:secret@postgres:5432/hi-events
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ services:
15
15
- QUEUE_CONNECTION=${QUEUE_CONNECTION}
16
16
- MAIL_MAILER=${MAIL_MAILER}
17
17
- APP_KEY=${APP_KEY}
18
+ - APP_FRONTEND_URL=${APP_FRONTEND_URL}
18
19
- JWT_SECRET=${JWT_SECRET}
19
20
- FILESYSTEM_PUBLIC_DISK=${FILESYSTEM_PUBLIC_DISK}
20
21
- FILESYSTEM_PRIVATE_DISK=${FILESYSTEM_PRIVATE_DISK}
You can’t perform that action at this time.
0 commit comments