我对Gruntjs比较陌生,但我设法让所有东西都自动运行,除了我的localhost。
如何让Grunt运行python manage.py runserver 0.0.0.0:8000 --insecure
?
答案 0 :(得分:12)
您可以使用grunt-shell https://github.com/sindresorhus/grunt-shell
尝试这样的事情:
grunt.initConfig({
shell: {
pythonServer: {
options: {
stdout: true
},
command: 'python manage.py runserver 0.0.0.0:8000 --insecure'
}
}
});
grunt.loadNpmTasks('grunt-shell');
grunt.registerTask('default', ['shell:pythonServer']);
我希望它有帮助:) 干杯