CoolFace
Apppublic

flexfitfury9/Ai_educational_platform

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
runtime.yaml22 linesDownload Raw Back to root
1runtime:
2  docker:
3    image: python:3.11-slim
4    ports:
5      - 7860:7860
6      - 5000:5000
7    resources:
8      memory: "16Gi"
9      cpu: "4"
10      gpu: "1"
11    env:
12      - name: PYTHONUNBUFFERED
13        value: "1"
14      - name: GRADIO_SERVER_NAME
15        value: "0.0.0.0"
16      - name: GRADIO_SERVER_PORT
17        value: "7860"
18      - name: PORT
19        value: "5000"
20      - name: FLASK_DEBUG
21        value: "False"
22