vladimirnani / DjangoCommands

ST2/ST3 plugin for managing django project
29 stars 14 forks source link

custom server command? #31

Closed aarondiazr closed 7 years ago

aarondiazr commented 7 years ago

Hi!

I don't understand how to execute custom server command, i want to runserver command with custom setting args, for example:

python manage.py runserver --settings=project.settings.dev

Is possible?

mxdevmanuel commented 7 years ago

well yeah you just add: "server_custom_command": { "command": "manage.py", "args": [ "runserver", "--settings=project.settings.dev", ] },

to your project file and that must work