planolyzer-v2 / Spacefile
chelleboyer's picture
Initial commit: Planolyzer v2
1c47c79
raw
history blame contribute delete
357 Bytes
# Spacefile Docs: https://huggingface.co/docs/hub/spaces-config-reference
image: python:3.11
sdk: gradio
python_version: "3.11"
# Set up the environment
run: |
pip install -r requirements.txt
chainlit run app.py
# Set environment variables
env:
PYTHONPATH: ${PYTHONPATH}:${SPACE_ID}
HF_HUB_ENABLE_HF_TRANSFER: 1
# Expose the port
ports:
- 7860