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')