Spaces:
Sleeping
Sleeping
File size: 641 Bytes
76275b9 906f388 76275b9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# --- SOCIAL MEDIA APP CONFIGURATION ---
# Set the desired storage backend. Options are:
# "RAM" (in-memory, data is lost on restart)
# "JSON" (persists to a local social_data.json file)
# "SQLITE" (persists to a local social_data.db file)
# "HF_DATASET" (persists to a private Hugging Face Dataset repository)
STORAGE_BACKEND="HF_DATASET"
# --- REQUIRED FOR HF_DATASET BACKEND ---
# Your Hugging Face user/org token with 'write' permissions.
# HF_TOKEN="hf_..."
# The repository ID for your private dataset. Create one on huggingface.co first.
# Example: "your-username/my-social-app-data"
HF_DATASET_REPO="broadfield-dev/chatspace-data" |