Source code for djpro.utils.messages.run_dev

from ..logging import logging, log_with_color, Fore


[docs]def run_dev_messages(): """Messages""" # Mensaje principal log_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", ] for command in commands: log_with_color(logging.INFO, f" {command}", Fore.WHITE)