How create a project type
I need to create my own project type with particular features.
For example, when I click new project and choose django project type, automatically pycharm generate the corresponding python packages, modules and other things. I need to create a project type whith some features, similar to these, how can I do it?
Excuse me for my bad english
For example, when I click new project and choose django project type, automatically pycharm generate the corresponding python packages, modules and other things. I need to create a project type whith some features, similar to these, how can I do it?
Excuse me for my bad english
Please sign in to leave a comment.
Pycharm project files are just XML – so if you create a template in the IDE manually you should be able to write a program that creates clones from those files.
Just an idea...