GouravDeepak/Mark3
0
1# render.yaml2services:3 - type: web4 name: baccarat-ai-app5 env: python6 plan: free7 # A list of secret files for our project.8 # This is for the .h5 and .pkl files.9 secretFiles:10 - key: BACCARAT_LSTM_RICH_MODEL11 name: baccarat_lstm_rich_model.h512 path: . # Put it in the root directory13 - key: RICH_MODEL_SCALER14 name: rich_model_scaler.pkl15 path: . # Put it in the root directory16 buildCommand: "pip install -r requirements.txt"17 startCommand: "gunicorn app:app"18 envVars:19 - key: PYTHON_VERSION20 value: 3.11.0