|
1 |
| -# See the README.md file for informaiton on how to generate the JWT_SECRET and APP_KEY |
| 1 | +# See the README.md file for information on how to generate the JWT_SECRET and APP_KEY |
2 | 2 | APP_KEY=
|
3 | 3 | JWT_SECRET=
|
4 | 4 |
|
5 | 5 | # Frontend variables (Always prefixed with VITE_)
|
6 | 6 | VITE_FRONTEND_URL=http://localhost:8123
|
7 | 7 | VITE_API_URL_CLIENT=http://localhost:8123/api
|
8 | 8 | VITE_API_URL_SERVER=http://localhost:80/api
|
9 |
| -VITE_STRIPE_PUBLISHABLE_KEY=pk_test |
| 9 | +VITE_STRIPE_PUBLISHABLE_KEY=pk_test_123456789 |
10 | 10 |
|
11 | 11 | # Backend variables
|
12 | 12 | # These values may not be suitable for production environments.
|
13 | 13 | # Please refer to the documentation for more information on how to configure these values
|
14 | 14 | # https://hi.events/docs/getting-started/deploying
|
15 | 15 | LOG_CHANNEL=stderr
|
16 | 16 | QUEUE_CONNECTION=sync
|
| 17 | + |
| 18 | +# Application settings |
| 19 | +APP_CDN_URL=http://localhost:8123/storage |
| 20 | +APP_FRONTEND_URL=http://localhost:8123 |
| 21 | +APP_DISABLE_REGISTRATION=false |
| 22 | +APP_SAAS_MODE_ENABLED=false |
| 23 | +APP_SAAS_STRIPE_APPLICATION_FEE_PERCENT=0 |
| 24 | +APP_SAAS_STRIPE_APPLICATION_FEE_FIXED=0 |
| 25 | + |
| 26 | +# Email settings (Using log mailer for local testing) |
17 | 27 | MAIL_MAILER=log
|
| 28 | +MAIL_DRIVER=log |
| 29 | +MAIL_HOST=mail.local |
| 30 | +MAIL_PORT=1025 |
| 31 | +MAIL_USERNAME=null |
| 32 | +MAIL_PASSWORD=null |
| 33 | +MAIL_ENCRYPTION=null |
| 34 | +MAIL_FROM_ADDRESS=[email protected] |
| 35 | +MAIL_FROM_NAME="Hi Events" |
18 | 36 |
|
| 37 | +# File storage settings |
19 | 38 | FILESYSTEM_PUBLIC_DISK=public
|
20 | 39 | FILESYSTEM_PRIVATE_DISK=local
|
21 | 40 |
|
22 |
| -APP_CDN_URL=http://localhost:8123/storage |
23 |
| -APP_FRONTEND_URL=http://localhost:8123 |
24 |
| - |
| 41 | +# Database settings |
25 | 42 | DATABASE_URL=postgresql://postgres:secret@postgres:5432/hi-events
|
| 43 | + |
| 44 | +# Stripe settings (Replace with valid test keys if necessary) |
| 45 | +STRIPE_PUBLIC_KEY=pk_test_123456789 |
| 46 | +STRIPE_SECRET_KEY=sk_test_123456789 |
| 47 | +STRIPE_WEBHOOK_SECRET=whsec_test_123456789 |
0 commit comments