mirror of
https://github.com/marcogll/AnchorOS.git
synced 2026-03-15 13:24:27 +00:00
feat: Add kiosk management, artist selection, and schedule management
- Add KiosksManagement component with full CRUD for kiosks - Add ScheduleManagement for staff schedules with break reminders - Update booking flow to allow artist selection by customers - Add staff_services API for assigning services to artists - Update staff management UI with service assignment dialog - Add auto-break reminder when schedule >= 8 hours - Update availability API to filter artists by service - Add kiosk management to Aperture dashboard - Clean up ralphy artifacts and logs
This commit is contained in:
40
.env.template
Normal file
40
.env.template
Normal file
@@ -0,0 +1,40 @@
|
||||
# Supabase Configuration
|
||||
NEXT_PUBLIC_SUPABASE_URL=your_supabase_project_url
|
||||
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key
|
||||
SUPABASE_URL=your_supabase_project_url
|
||||
SUPABASE_SERVICE_ROLE_KEY=your_supabase_service_role_key
|
||||
|
||||
# Stripe Configuration
|
||||
NEXT_PUBLIC_STRIPE_ENABLED=false
|
||||
STRIPE_SECRET_KEY=your_stripe_secret_key
|
||||
STRIPE_PUBLISHABLE_KEY=your_stripe_publishable_key
|
||||
STRIPE_WEBHOOK_SECRET=your_stripe_webhook_secret
|
||||
|
||||
# Google Calendar (Optional)
|
||||
GOOGLE_SERVICE_ACCOUNT_JSON=your_google_service_account_json
|
||||
GOOGLE_CALENDAR_ID=primary
|
||||
GOOGLE_CALENDAR_VERIFY_TOKEN=your_verify_token
|
||||
|
||||
# WhatsApp/Twilio (Optional)
|
||||
TWILIO_ACCOUNT_SID=your_twilio_account_sid
|
||||
TWILIO_AUTH_TOKEN=your_twilio_auth_token
|
||||
TWILIO_WHATSAPP_FROM=whatsapp:+your_twilio_whatsapp_number
|
||||
|
||||
# Email (Optional)
|
||||
RESEND_API_KEY=your_resend_api_key
|
||||
|
||||
# Application
|
||||
NEXT_PUBLIC_APP_URL=http://localhost:2311
|
||||
|
||||
# Admin Enrollment (Optional)
|
||||
ADMIN_ENROLLMENT_KEY=your_admin_enrollment_key
|
||||
|
||||
# Cron Jobs
|
||||
CRON_SECRET=your_cron_secret
|
||||
|
||||
# Kiosk (Optional)
|
||||
NEXT_PUBLIC_KIOSK_API_KEY=your_kiosk_api_key
|
||||
|
||||
# Formbricks (Optional)
|
||||
NEXT_PUBLIC_FORMBRICKS_ENVIRONMENT_ID=your_formbricks_environment_id
|
||||
NEXT_PUBLIC_FORMBRICKS_API_HOST=https://app.formbricks.com
|
||||
Reference in New Issue
Block a user