- Add initial project scaffolding with Go module and project structure - Create server and CLI entry points for application - Implement Makefile with development and build commands - Add `.env.example` with comprehensive configuration template - Set up README.md with project documentation and setup instructions - Configure basic dependencies for server, database, and CLI tools - Establish internal package structure for models, services, and handlers - Add initial configuration and environment management - Prepare for HTTP server, CLI, and database integration
33 lines
761 B
Plaintext
33 lines
761 B
Plaintext
# Server Configuration
|
|
PORT=8080
|
|
HOST=localhost
|
|
|
|
# Database Configuration
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_USER=postgres
|
|
DB_PASSWORD=your_password
|
|
DB_NAME=booking_system
|
|
DB_SSLMODE=disable
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET=your-super-secret-jwt-key
|
|
JWT_EXPIRATION=24h
|
|
|
|
# Stripe Configuration
|
|
STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key
|
|
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret
|
|
STRIPE_PUBLISHABLE_KEY=pk_test_your_publishable_key
|
|
|
|
# SMTP Configuration
|
|
SMTP_HOST=smtp.gmail.com
|
|
SMTP_PORT=587
|
|
SMTP_USERNAME=your_email@gmail.com
|
|
SMTP_PASSWORD=your_app_password
|
|
SMTP_FROM=your_email@gmail.com
|
|
|
|
# Jitsi Configuration
|
|
JITSI_BASE_URL=https://meet.jit.si
|
|
JITSI_API_KEY=your_jitsi_api_key
|
|
JITSI_APP_ID=your_jitsi_app_id
|
|
JITSI_PRIVATE_KEY=your_jitsi_private_key |