guettli
guettli

Reputation: 27825

How to store Run/Debug Configuration in git repo

I created a small Python project at github who-and-what-is-xyz.

I would like to make it super easy for other developers who use PyCharm to start developing.

I would like to store some "Run/Debug Configuration" in the git repo.

For example: Starting the runserver. Like explained here: How to run Debug server for Django project in PyCharm Community Edition?

After cloning the repo from github the config to run "runserver" should be available.

How can I store this in git?

Upvotes: 0

Views: 375

Answers (1)

Giordano
Giordano

Reputation: 5570

It is possible to share Run/Debug configurations using an option present in the Configuration window called Share through VCS.
In this way, your colleagues should be able to get and to use them without problems.

Here a useful tutorial from PyCharm site.

Upvotes: 1

Related Questions