From a1b58aab142bc6902177e8b000dec04bcf45aca4 Mon Sep 17 00:00:00 2001 From: "Nikita P. Shupeyko" Date: Sun, 14 May 2017 14:50:32 +0300 Subject: [PATCH] Get rid of Gulp migrate task --- {{cookiecutter.project_slug}}/gulpfile.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/{{cookiecutter.project_slug}}/gulpfile.js b/{{cookiecutter.project_slug}}/gulpfile.js index 55a4ce4ef..f3278afe5 100644 --- a/{{cookiecutter.project_slug}}/gulpfile.js +++ b/{{cookiecutter.project_slug}}/gulpfile.js @@ -109,15 +109,6 @@ gulp.task('styles', function () { }) // endregion -// region manage.py -gulp.task('migrate', function () { - const cmd = spawn('python', ['manage.py', 'migrate'], {stdio: 'inherit'}) - cmd.on('close', function (code) { - console.log('migrate exited with code ' + code) - }) -}) -// endregion - // region build gulp.task('build', function () { runSequence(['images', 'scripts', 'styles'])