constants.ts 2.55 KB
import { ImageItem } from './types';

export const Z_IMAGE_DIRECT_BASE_URL = "http://106.120.52.146:39009";

const ENV_PROXY_URL = import.meta.env?.VITE_API_BASE_URL?.trim();
const DEFAULT_PROXY_URL = ENV_PROXY_URL && ENV_PROXY_URL.length > 0
  ? ENV_PROXY_URL
  : "http://localhost:9009";

export const API_BASE_URL = DEFAULT_PROXY_URL;

export const API_ENDPOINTS = API_BASE_URL === Z_IMAGE_DIRECT_BASE_URL
  ? [Z_IMAGE_DIRECT_BASE_URL]
  : [API_BASE_URL, Z_IMAGE_DIRECT_BASE_URL];

// This is the specific Administrator ID requested
export const ADMIN_ID = '86427531';

export const DEFAULT_PARAMS = {
  height: 1024,
  width: 1024,
  num_inference_steps: 20,
  guidance_scale: 7.5,
};

// ==============================================================================
// VIRTUAL FOLDER (DATABASE)
// ==============================================================================
// This array represents the "Folder" of images on your server.
// The app sorts these by 'likes' automatically.
// To update this "Folder":
// 1. Login as 86427531.
// 2. Add/Delete/Edit images in the UI.
// 3. Click "Export Config" and overwrite this file.
// ==============================================================================

export const SHOWCASE_IMAGES: ImageItem[] = [
  {
    "id": "showcase-3",
    "url": "https://images.unsplash.com/photo-1655720357761-f18ea9e5e7e6?q=80&w=1000&auto=format&fit=crop",
    "prompt": "3D render of a futuristic glass architecture, parametric design, minimal, white background",
    "width": 1024,
    "height": 1024,
    "num_inference_steps": 20,
    "guidance_scale": 6,
    "seed": 1003,
    "createdAt": 1715000000000,
    "authorId": "OFFICIAL",
    "likes": 3,
    "isMock": true
  },
  {
    "id": "showcase-4",
    "url": "https://images.unsplash.com/photo-1614730341194-75c60740a0d3?q=80&w=1000&auto=format&fit=crop",
    "prompt": "Macro photography of a soap bubble, iridescent colors, intricate patterns",
    "width": 800,
    "height": 800,
    "num_inference_steps": 50,
    "guidance_scale": 5,
    "seed": 1004,
    "createdAt": 1715000000000,
    "authorId": "OFFICIAL",
    "likes": 4,
    "isMock": true
  },
  {
    "id": "showcase-5",
    "url": "https://images.unsplash.com/photo-1620641788421-7a1c342ea42e?q=80&w=1000&auto=format&fit=crop",
    "prompt": "Digital art, surreal landscape with floating islands, dreamy pastel colors",
    "width": 800,
    "height": 1200,
    "num_inference_steps": 20,
    "guidance_scale": 7.5,
    "seed": 1005,
    "createdAt": 1715000000000,
    "authorId": "OFFICIAL",
    "likes": 5,
    "isMock": true
  }
];