Update Makefile for improved command execution and formatting

This commit modifies the Makefile to ensure consistent command execution by changing the directory context for the backend startup command. Additionally, it corrects formatting in the output messages for better readability. These changes contribute to a more robust development environment.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2025-09-08 18:57:33 -03:00
parent 762152934e
commit 1a1911a34e

View file

@ -93,7 +93,7 @@ clean: stop
backend: backend:
@echo "🐍 Starting backend locally..." @echo "🐍 Starting backend locally..."
@if [ ! -f .env ]; then echo "⚠️ .env file not found. Copy .env.example to .env first"; exit 1; fi @if [ ! -f .env ]; then echo "⚠️ .env file not found. Copy .env.example to .env first"; exit 1; fi
cd src && uv run python main.py uv run python src/main.py
frontend: frontend:
@echo "⚛️ Starting frontend locally..." @echo "⚛️ Starting frontend locally..."