diff --git a/{{cookiecutter.project_slug}}/docs/pycharm/configuration.rst b/{{cookiecutter.project_slug}}/docs/pycharm/configuration.rst index 551da194..af3b826a 100644 --- a/{{cookiecutter.project_slug}}/docs/pycharm/configuration.rst +++ b/{{cookiecutter.project_slug}}/docs/pycharm/configuration.rst @@ -25,14 +25,6 @@ Switch to *Docker Compose* and select `local.yml` file from directory of your pr .. image:: images/4.png -Because Pycharm restarts container every time you use Configuration Run, to not have server restarted during running tests, we defined second service in `local.yml` file called pycharm. To use it, you have to add interpreter of second service as well. - -.. image:: images/5.png - -The final result should be: - -.. image:: images/6.png - Having that, click *OK*. Close *Settings* panel, and wait few seconds... .. image:: images/7.png diff --git a/{{cookiecutter.project_slug}}/docs/pycharm/images/5.png b/{{cookiecutter.project_slug}}/docs/pycharm/images/5.png deleted file mode 100644 index 39fac959..00000000 Binary files a/{{cookiecutter.project_slug}}/docs/pycharm/images/5.png and /dev/null differ diff --git a/{{cookiecutter.project_slug}}/docs/pycharm/images/6.png b/{{cookiecutter.project_slug}}/docs/pycharm/images/6.png deleted file mode 100644 index 0cd70d24..00000000 Binary files a/{{cookiecutter.project_slug}}/docs/pycharm/images/6.png and /dev/null differ diff --git a/{{cookiecutter.project_slug}}/local.yml b/{{cookiecutter.project_slug}}/local.yml index 40a6d011..0fbb4436 100644 --- a/{{cookiecutter.project_slug}}/local.yml +++ b/{{cookiecutter.project_slug}}/local.yml @@ -28,18 +28,6 @@ services: - postgres_backup_dev:/backups environment: - POSTGRES_USER={{cookiecutter.project_slug}} -{% if cookiecutter.use_pycharm == 'y' %} - pycharm: - build: - context: . - dockerfile: ./compose/django/Dockerfile-local - depends_on: - - postgres - environment: - - POSTGRES_USER={{cookiecutter.project_slug}} - volumes: - - .:/app -{% endif %} {% if cookiecutter.use_mailhog == 'y' %} mailhog: image: mailhog/mailhog:v1.0.0 diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index 46c78d18..0e15afab 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -16,7 +16,6 @@ whitenoise==3.3.0 # Forms -django-braces==1.11.0 django-crispy-forms==1.6.1 # Models