[docs]defrun_dev_messages():"""Messages"""# Mensaje principallog_with_color(logging.INFO,"Your development environment is almost ready to run...",Fore.WHITE,)log_with_color(logging.INFO,"Run the following commands inside the folder 'src' of your project:\n",Fore.WHITE,)commands=["pip install -r requirements.txt","djpro man collectstatic","djpro man runserver\n",]forcommandincommands:log_with_color(logging.INFO,f" {command}",Fore.WHITE)