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