maniyakhan/todo-stack
0
1#!/bin/bash2# Startup script for the Todo application3 4echo "Starting Todo Application..."5 6# Start the backend server7echo "Starting backend server..."8cd backend9pip install -r requirements.txt10uvicorn src.main:app --reload &11BACKEND_PID=$!12 13# Give the backend a moment to start14sleep 315 16# Start the frontend server17echo "Starting frontend server..."18cd ../frontend19npm install20npm run dev &21 22# Wait for both processes23wait $BACKEND_PID