From 9ff1deb68705a489f56712303f3803c1f5b2dfe0 Mon Sep 17 00:00:00 2001 From: Mono Mono Date: Sat, 11 Jan 2025 19:21:00 -0500 Subject: [PATCH] dev(rakeFile): add terminal django. --- Rakefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Rakefile b/Rakefile index 6519992..ec719a9 100644 --- a/Rakefile +++ b/Rakefile @@ -65,6 +65,11 @@ namespace :dev do compose('exec', 'django', 'python', '/app/manage.py', 'test', '/app/don_confiao') end + desc 'terminal django' + task :djangoShell do + compose('exec', 'django', 'python', '/app/manage.py', 'shell') + end + desc 'crear migraciones' task :makemigrations do compose('exec', 'django', 'python', '/app/manage.py', 'makemigrations')