Add payment method selection (Cash/Bank) to booking details Support uploading, downloading, and deleting transaction documents Update database schema and API endpoints to handle file storage
14 lines
522 B
Plaintext
14 lines
522 B
Plaintext
NUXT_DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/dinner_ticket_system
|
|
NUXT_REDIS_URL=redis://127.0.0.1:6379
|
|
NUXT_SESSION_COOKIE_NAME=dinner_ticket_session
|
|
NUXT_TRANSACTION_DOCUMENT_DIR=.data/transaction-documents
|
|
NUXT_WHATSAPP_ACCESS_TOKEN=
|
|
NUXT_WHATSAPP_PHONE_NUMBER_ID=
|
|
NUXT_WHATSAPP_API_VERSION=v23.0
|
|
|
|
# Use your deployed HTTPS origin in production so WebAuthn/passkeys validate correctly.
|
|
NUXT_PUBLIC_APP_URL=http://localhost:20013
|
|
NUXT_PUBLIC_RP_NAME=Dinner Ticket System
|
|
NITRO_HOST=0.0.0.0
|
|
PORT=20013
|