garment_designer / entrypoint.sh
giorgio-caparvi
First commit
bed9a40
raw
history blame
211 Bytes
#!/bin/bash
# Activate the conda environment
source /opt/conda/etc/profile.d/conda.sh
conda activate mgd
# Start the Flask backend
python /api/app.py &
# Start the Next.js frontend
cd /frontend
npm run start