File size: 727 Bytes
edcf070 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Database (PostgreSQL)
# Catatan: Gunakan driver postgres:// untuk Go, bukan postgresql+psycopg://
DATABASE_URL=postgres://warungpos:warungpos123@127.0.0.1:5432/warungpos_db?sslmode=disable
# Tripay Payment Gateway
TRIPAY_MERCHANT_CODE=Txxxx
TRIPAY_API_KEY=your-api-key-here
TRIPAY_PRIVATE_KEY=your-private-key-here
TRIPAY_IS_PRODUCTION=false
# App
PORT=7860
APP_PORT=8003
APP_BASE_URL=http://localhost:8003
STORE_NAME=Warung POS
# JWT
JWT_SECRET_KEY=change-me-to-a-secure-secret-key-32-chars
JWT_EXPIRY_HOURS=24
# WhatsApp Notification via Fonnte
FONNTE_TOKEN=your-fonnte-token-here
# Cloudinary (Media Storage)
CLOUDINARY_CLOUD_NAME=your-cloud-name
CLOUDINARY_API_KEY=your-api-key
CLOUDINARY_API_SECRET=your-api-secret
|