Browse Source

💚 disable ssl on db

main
Julien Dudek 6 years ago
parent
commit
054d16d876
  1. 4
      .circleci/config.yml

4
.circleci/config.yml

@ -81,7 +81,7 @@ jobs:
environment:
CONDUIT_SECRET: 'something-really-secret'
FLASK_APP: /home/circleci/repo/autoapp.py
DATABASE_URL: postgresql://myUsr:somePwd@localhost:5432/myUsr
DATABASE_URL: postgresql://myUsr:somePwd@localhost:5432/myUsr?sslmode=disable
FLASK_DEBUG: 1
# run tests!
# this example uses Django's built-in test-runner
@ -97,7 +97,7 @@ jobs:
CONDUIT_SECRET: 'something-really-secret'
FLASK_APP: /home/circleci/repo/autoapp.py
FLASK_DEBUG: 1
DATABASE_URL: postgresql://myUsr:somePwd@localhost:5432/myUsr
DATABASE_URL: postgresql://myUsr:somePwd@localhost:5432/myUsr?sslmode=disable
- save_cache:
paths:

Loading…
Cancel
Save