Spaces:
Paused
Paused
File size: 211 Bytes
bed9a40 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/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
|