All checks were successful
Deploy to Production / deploy (push) Successful in 1m49s
- Added new Stock Photos tab in Media Library for searching and importing Unsplash photos - Implemented search functionality with preview thumbnails and attribution info - Added one-click import feature to save photos directly to user's library - Created detailed setup documentation (STOCK_PHOTOS_QUICK_START.md and STOCK_PHOTOS_SETUP.md) - Added UNSPLASH_ACCESS_KEY configuration to .env.example - Enhanced MediaLibrary component with tabs,
21 lines
570 B
Plaintext
21 lines
570 B
Plaintext
# Database
|
|
MYSQL_ROOT_PASSWORD=your_root_password_here
|
|
MYSQL_PASSWORD=your_mysql_password_here
|
|
|
|
# Application
|
|
ADMIN_PASSWORD=your_admin_password_here
|
|
OPENAI_API_KEY=sk-your-openai-api-key
|
|
UNSPLASH_ACCESS_KEY=your_unsplash_access_key
|
|
GHOST_ADMIN_API_KEY=your_ghost_admin_api_key
|
|
GHOST_ADMIN_API_URL=https://your-ghost-instance/admin
|
|
|
|
# S3 Storage
|
|
S3_BUCKET=your-bucket-name
|
|
S3_REGION=us-east-1
|
|
S3_ACCESS_KEY=your_access_key
|
|
S3_SECRET_KEY=your_secret_key
|
|
S3_ENDPOINT=https://s3.amazonaws.com
|
|
|
|
# Frontend (for production deployment)
|
|
VITE_API_URL=https://api.yourdomain.com
|